Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be | 
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. | 
| 4 | 4 | 
| 5 from . import steps | 5 from . import steps | 
| 6 import time | |
| 6 | 7 | 
| 7 RESULTS_URL = 'https://chromeperf.appspot.com' | 8 RESULTS_URL = 'https://chromeperf.appspot.com' | 
| 8 | 9 | 
| 9 | 10 | 
| 10 KITCHEN_TEST_SPEC = { | 11 KITCHEN_TEST_SPEC = { | 
| 11 'chromium_config': 'chromium', | 12 'chromium_config': 'chromium', | 
| 12 'chromium_apply_config': [ | 13 'chromium_apply_config': [ | 
| 13 'mb', | 14 'mb', | 
| 14 'ninja_confirm_noop', | 15 'ninja_confirm_noop', | 
| 15 'archive_gpu_tests', | 16 'archive_gpu_tests', | 
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 179 '--additional-driver-flag', | 180 '--additional-driver-flag', | 
| 180 '--enable-blink-features=TraceWrappables', | 181 '--enable-blink-features=TraceWrappables', | 
| 181 ]), | 182 ]), | 
| 182 ], | 183 ], | 
| 183 'testing': { | 184 'testing': { | 
| 184 'platform': 'linux', | 185 'platform': 'linux', | 
| 185 }, | 186 }, | 
| 186 'enable_swarming': True, | 187 'enable_swarming': True, | 
| 187 'use_isolate': True, | 188 'use_isolate': True, | 
| 188 }, | 189 }, | 
| 190 'WebKit Linux - RandomOrder':{ | |
| 191 'chromium_config': 'chromium', | |
| 192 'chromium_apply_config': ['mb','ninja_confirm_noop'], | |
| 193 'gclient_config': 'chromium', | |
| 194 'chromium_config_kwargs': { | |
| 195 'BUILD_CONFIG': 'Release', | |
| 196 'TARGET_BITS': 64, | |
| 197 }, | |
| 198 'compile_targets': [ | |
| 199 'blink_tests', | |
| 200 ], | |
| 201 'tests': [ | |
| 202 steps.BlinkTest(extra_args=[ | |
| 203 '--order=random', | |
| 204 '--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
 
 | |
| 205 ]), | |
| 206 ], | |
| 207 'testing': { | |
| 208 'platform': 'linux', | |
| 209 }, | |
| 210 'enable_swarming': True, | |
| 211 'use_isolate': True, | |
| 212 }, | |
| 189 'WebKit Mac - WPTServe':{ | 213 'WebKit Mac - WPTServe':{ | 
| 190 'chromium_config': 'chromium', | 214 'chromium_config': 'chromium', | 
| 191 'chromium_apply_config': ['mb','ninja_confirm_noop'], | 215 'chromium_apply_config': ['mb','ninja_confirm_noop'], | 
| 192 'gclient_config': 'chromium', | 216 'gclient_config': 'chromium', | 
| 193 'chromium_config_kwargs': { | 217 'chromium_config_kwargs': { | 
| 194 'BUILD_CONFIG': 'Release', | 218 'BUILD_CONFIG': 'Release', | 
| 195 'TARGET_BITS': 64, | 219 'TARGET_BITS': 64, | 
| 196 }, | 220 }, | 
| 197 'compile_targets': [ | 221 'compile_targets': [ | 
| 198 'blink_tests', | 222 'blink_tests', | 
| (...skipping 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2057 'TARGET_PLATFORM': 'win', | 2081 'TARGET_PLATFORM': 'win', | 
| 2058 'TARGET_BITS': 32, | 2082 'TARGET_BITS': 32, | 
| 2059 }, | 2083 }, | 
| 2060 'bot_type': 'builder_tester', | 2084 'bot_type': 'builder_tester', | 
| 2061 'testing': { 'platform': 'win', }, | 2085 'testing': { 'platform': 'win', }, | 
| 2062 'use_isolate': True, | 2086 'use_isolate': True, | 
| 2063 'enable_swarming': True, | 2087 'enable_swarming': True, | 
| 2064 }, | 2088 }, | 
| 2065 }, | 2089 }, | 
| 2066 } | 2090 } | 
| OLD | NEW |