Chromium Code Reviews| 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"] |
| + } |
| ] |
| } |