Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| index abb3423be0e89bbab6896fc71a28c42b65c6d57d..09d630fa3f7ed1683214c626b6efb55b079c2ed2 100644 |
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| @@ -3,6 +3,7 @@ |
| # found in the LICENSE file. |
| from . import steps |
| +import time |
| RESULTS_URL = 'https://chromeperf.appspot.com' |
| @@ -186,6 +187,29 @@ SPEC = { |
| 'enable_swarming': True, |
| 'use_isolate': True, |
| }, |
| + 'WebKit Linux - RandomOrder':{ |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb','ninja_confirm_noop'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'compile_targets': [ |
| + 'blink_tests', |
| + ], |
| + 'tests': [ |
| + steps.BlinkTest(extra_args=[ |
| + '--order=random', |
| + '--seed=%d' % time.time(), |
|
Dirk Pranke
2016/10/10 23:30:22
I believe this seed will change only when the buil
jeffcarp
2016/10/11 00:21:58
Got it. In that case it sounds like we'll need to
jeffcarp
2016/10/28 03:08:06
I removed the --seed flag in anticipation of https
|
| + ]), |
| + ], |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'enable_swarming': True, |
| + 'use_isolate': True, |
| + }, |
| 'WebKit Mac - WPTServe':{ |
| 'chromium_config': 'chromium', |
| 'chromium_apply_config': ['mb','ninja_confirm_noop'], |