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

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

Issue 2296493002: Merge all Field Trial Testing Configuration Together (Closed)
Patch Set: Review Created 4 years, 4 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..4331867cc43908a39e3d72c5b9d98641dd994b2b 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"}
+ {
+ "groups": [{"group_name": "TestGroup1"}],
+ "platforms": ["win"]
+ }
],
"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"]
+ "groups": [
Alexei Svitkine (slow) 2016/08/30 17:59:15 We call these "experiments" server-side. How about
robliao 2016/08/30 18:16:43 jwd suggested that the terminiology was trial and
Alexei Svitkine (slow) 2016/08/30 21:39:50 It's a tricky question and I can see arguments for
robliao 2016/09/01 21:49:07 I made the json format changes. I'd like to adjust
robliao 2016/09/09 00:48:02 https://codereview.chromium.org/2319293006/ contai
+ {
+ "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"]
Alexei Svitkine (slow) 2016/08/30 21:39:50 Can you list platforms first? This is the conventi
robliao 2016/09/01 21:49:07 Done. This also required rewriting the pretty prin
}
],
"TestTrial3": [
- {"group_name": "TestGroup3", "enable_features": ["X"]}
+ {
+ "groups": [{"group_name": "TestGroup3", "enable_features": ["X"]}],
+ "platforms": ["win"]
+ }
]
}
« 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