webrtc/test/create_test_field_trials.cc
Danil Chapovalov 5d11f09b12 Introduce CreateTestFieldTrials free function
Suggest to use it as the primary source for field trials in tests.

When used widely, it would allow to remove quering force_field trial in
test main functions, and more importnately, would avoid using global
field trial string to propagate field trials from the command line.

Bug: webrtc:419453427
Change-Id: I016098522966340d99857de8530fc6d6148e5479
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/393220
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#44772}
2025-05-27 08:17:23 -07:00

35 lines
1.1 KiB
C++

/*
* Copyright (c) 2025 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "test/create_test_field_trials.h"
#include <string>
#include "absl/flags/flag.h"
#include "absl/strings/string_view.h"
#include "api/field_trials.h"
ABSL_FLAG(std::string,
force_fieldtrials,
"",
"Field trials control experimental feature code which can be forced. "
"E.g. running with --force_fieldtrials=WebRTC-FooFeature/Enable/"
" will assign the group Enable to field trial WebRTC-FooFeature.");
namespace webrtc {
FieldTrials CreateTestFieldTrials(absl::string_view s) {
FieldTrials result(absl::GetFlag(FLAGS_force_fieldtrials));
result.Merge(FieldTrials(s));
return result;
}
} // namespace webrtc