| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 '--additional-driver-flag', | 181 '--additional-driver-flag', |
| 181 '--js-flags=--incremental-marking-wrappers', | 182 '--js-flags=--incremental-marking-wrappers', |
| 182 ]), | 183 ]), |
| 183 ], | 184 ], |
| 184 'testing': { | 185 'testing': { |
| 185 'platform': 'linux', | 186 'platform': 'linux', |
| 186 }, | 187 }, |
| 187 'enable_swarming': True, | 188 'enable_swarming': True, |
| 188 'use_isolate': True, | 189 'use_isolate': True, |
| 189 }, | 190 }, |
| 191 'WebKit Linux - RandomOrder':{ |
| 192 'chromium_config': 'chromium', |
| 193 'chromium_apply_config': ['mb','ninja_confirm_noop'], |
| 194 'gclient_config': 'chromium', |
| 195 'chromium_config_kwargs': { |
| 196 'BUILD_CONFIG': 'Release', |
| 197 'TARGET_BITS': 64, |
| 198 }, |
| 199 'compile_targets': [ |
| 200 'blink_tests', |
| 201 ], |
| 202 'tests': [ |
| 203 steps.BlinkTest(extra_args=[ |
| 204 '--order=random', |
| 205 ]), |
| 206 ], |
| 207 'testing': { |
| 208 'platform': 'linux', |
| 209 }, |
| 210 'enable_swarming': True, |
| 211 'use_isolate': True, |
| 212 }, |
| 190 'WebKit Mac - WPTServe':{ | 213 'WebKit Mac - WPTServe':{ |
| 191 'chromium_config': 'chromium', | 214 'chromium_config': 'chromium', |
| 192 'chromium_apply_config': ['mb','ninja_confirm_noop'], | 215 'chromium_apply_config': ['mb','ninja_confirm_noop'], |
| 193 'gclient_config': 'chromium', | 216 'gclient_config': 'chromium', |
| 194 'chromium_config_kwargs': { | 217 'chromium_config_kwargs': { |
| 195 'BUILD_CONFIG': 'Release', | 218 'BUILD_CONFIG': 'Release', |
| 196 'TARGET_BITS': 64, | 219 'TARGET_BITS': 64, |
| 197 }, | 220 }, |
| 198 'compile_targets': [ | 221 'compile_targets': [ |
| 199 'blink_tests', | 222 'blink_tests', |
| (...skipping 1912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2112 'TARGET_PLATFORM': 'win', | 2135 'TARGET_PLATFORM': 'win', |
| 2113 'TARGET_BITS': 32, | 2136 'TARGET_BITS': 32, |
| 2114 }, | 2137 }, |
| 2115 'bot_type': 'builder_tester', | 2138 'bot_type': 'builder_tester', |
| 2116 'testing': { 'platform': 'win', }, | 2139 'testing': { 'platform': 'win', }, |
| 2117 'use_isolate': True, | 2140 'use_isolate': True, |
| 2118 'enable_swarming': True, | 2141 'enable_swarming': True, |
| 2119 }, | 2142 }, |
| 2120 }, | 2143 }, |
| 2121 } | 2144 } |
| OLD | NEW |