| 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 | |
| 7 | 6 |
| 8 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 9 | 8 |
| 10 | 9 |
| 11 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
| 12 'chromium_config': 'chromium', | 11 'chromium_config': 'chromium', |
| 13 'chromium_apply_config': [ | 12 'chromium_apply_config': [ |
| 14 'mb', | 13 'mb', |
| 15 'ninja_confirm_noop', | 14 'ninja_confirm_noop', |
| 16 'archive_gpu_tests', | 15 'archive_gpu_tests', |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 '--additional-driver-flag', | 179 '--additional-driver-flag', |
| 181 '--enable-blink-features=TraceWrappables', | 180 '--enable-blink-features=TraceWrappables', |
| 182 ]), | 181 ]), |
| 183 ], | 182 ], |
| 184 'testing': { | 183 'testing': { |
| 185 'platform': 'linux', | 184 'platform': 'linux', |
| 186 }, | 185 }, |
| 187 'enable_swarming': True, | 186 'enable_swarming': True, |
| 188 'use_isolate': True, | 187 'use_isolate': True, |
| 189 }, | 188 }, |
| 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 ]), | |
| 205 ], | |
| 206 'testing': { | |
| 207 'platform': 'linux', | |
| 208 }, | |
| 209 'enable_swarming': True, | |
| 210 'use_isolate': True, | |
| 211 }, | |
| 212 'WebKit Mac - WPTServe':{ | 189 'WebKit Mac - WPTServe':{ |
| 213 'chromium_config': 'chromium', | 190 'chromium_config': 'chromium', |
| 214 'chromium_apply_config': ['mb','ninja_confirm_noop'], | 191 'chromium_apply_config': ['mb','ninja_confirm_noop'], |
| 215 'gclient_config': 'chromium', | 192 'gclient_config': 'chromium', |
| 216 'chromium_config_kwargs': { | 193 'chromium_config_kwargs': { |
| 217 'BUILD_CONFIG': 'Release', | 194 'BUILD_CONFIG': 'Release', |
| 218 'TARGET_BITS': 64, | 195 'TARGET_BITS': 64, |
| 219 }, | 196 }, |
| 220 'compile_targets': [ | 197 'compile_targets': [ |
| 221 'blink_tests', | 198 'blink_tests', |
| (...skipping 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2080 'TARGET_PLATFORM': 'win', | 2057 'TARGET_PLATFORM': 'win', |
| 2081 'TARGET_BITS': 32, | 2058 'TARGET_BITS': 32, |
| 2082 }, | 2059 }, |
| 2083 'bot_type': 'builder_tester', | 2060 'bot_type': 'builder_tester', |
| 2084 'testing': { 'platform': 'win', }, | 2061 'testing': { 'platform': 'win', }, |
| 2085 'use_isolate': True, | 2062 'use_isolate': True, |
| 2086 'enable_swarming': True, | 2063 'enable_swarming': True, |
| 2087 }, | 2064 }, |
| 2088 }, | 2065 }, |
| 2089 } | 2066 } |
| OLD | NEW |