Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: tools/variations/unittest_data/test_config.json

Issue 2296493002: Merge all Field Trial Testing Configuration Together (Closed)
Patch Set: Rebase to e3a7b31 Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/variations/unittest_data/test_config.json
diff --git a/tools/variations/unittest_data/test_config.json b/tools/variations/unittest_data/test_config.json
index 15a1a4528db5ae92596a53382558a7d50bf24298..f17738b325f3c0675c3fca2fba9688421468be91 100644
--- a/tools/variations/unittest_data/test_config.json
+++ b/tools/variations/unittest_data/test_config.json
@@ -1,28 +1,39 @@
{
"TestTrial1": [
- {"group_name": "TestGroup1"}
+ {
+ "platforms": ["win"],
+ "experiments": [{"name": "TestGroup1"}]
+ }
],
"TestTrial2": [
{
- "group_name": "TestGroup2",
- "params": {
- "x": "1",
- "y": "2"
- },
- "enable_features": ["A", "B"],
- "disable_features": ["C"]
- },
- {
- "group_name": "TestGroup2-2",
- "params": {
- "x": "3",
- "y": "4"
- },
- "enable_features": ["D", "E"],
- "disable_features": ["F"]
+ "platforms": ["win"],
+ "experiments": [
+ {
+ "name": "TestGroup2",
+ "params": {
+ "x": "1",
+ "y": "2"
+ },
+ "enable_features": ["A", "B"],
+ "disable_features": ["C"]
+ },
+ {
+ "name": "TestGroup2-2",
+ "params": {
+ "x": "3",
+ "y": "4"
+ },
+ "enable_features": ["D", "E"],
+ "disable_features": ["F"]
+ }
+ ]
}
],
"TestTrial3": [
- {"group_name": "TestGroup3", "enable_features": ["X"]}
+ {
+ "platforms": ["win"],
+ "experiments": [{"name": "TestGroup3", "enable_features": ["X"]}]
+ }
]
}
« tools/variations/fieldtrial_to_struct.py ('K') | « tools/variations/fieldtrial_to_struct_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698