| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 DEPS = [ | 5 DEPS = [ |
| 6 'chromium', | 6 'chromium', |
| 7 'chromium_android', | 7 'chromium_android', |
| 8 'chromium_tests', | 8 'chromium_tests', |
| 9 'isolate', | 9 'isolate', |
| 10 'json', | 10 'json', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'Linux Tests': { | 111 'Linux Tests': { |
| 112 'gtest_tests': [ | 112 'gtest_tests': [ |
| 113 'base_unittests', | 113 'base_unittests', |
| 114 {'test': 'browser_tests', 'shard_index': 0, 'total_shards': 2}, | 114 {'test': 'browser_tests', 'shard_index': 0, 'total_shards': 2}, |
| 115 ], | 115 ], |
| 116 }, | 116 }, |
| 117 })) | 117 })) |
| 118 ) | 118 ) |
| 119 | 119 |
| 120 yield ( | 120 yield ( |
| 121 api.test('dynamic_swarmed_gtest') + |
| 122 api.properties.generic(mastername='chromium.linux', |
| 123 buildername='Linux Builder') + |
| 124 api.platform('linux', 64) + |
| 125 api.override_step_data('read test spec', api.json.output({ |
| 126 'Linux Tests': { |
| 127 'gtest_tests': [ |
| 128 {'test': 'browser_tests', |
| 129 'swarming': {'can_use_on_swarming_builders': True } }, |
| 130 ], |
| 131 }, |
| 132 })) |
| 133 ) |
| 134 |
| 135 yield ( |
| 121 api.test('dynamic_gtest_on_builder') + | 136 api.test('dynamic_gtest_on_builder') + |
| 122 api.properties.generic(mastername='chromium.linux', | 137 api.properties.generic(mastername='chromium.linux', |
| 123 buildername='Linux Builder') + | 138 buildername='Linux Builder') + |
| 124 api.platform('linux', 64) + | 139 api.platform('linux', 64) + |
| 125 api.override_step_data('read test spec', api.json.output({ | 140 api.override_step_data('read test spec', api.json.output({ |
| 126 'Linux Tests': { | 141 'Linux Tests': { |
| 127 'gtest_tests': [ | 142 'gtest_tests': [ |
| 128 'base_unittests', | 143 'base_unittests', |
| 129 {'test': 'browser_tests', 'shard_index': 0, 'total_shards': 2}, | 144 {'test': 'browser_tests', 'shard_index': 0, 'total_shards': 2}, |
| 130 ], | 145 ], |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 yield ( | 314 yield ( |
| 300 api.test('perf_test_profile_failure') + | 315 api.test('perf_test_profile_failure') + |
| 301 api.properties.generic(mastername='chromium.perf', | 316 api.properties.generic(mastername='chromium.perf', |
| 302 buildername='Linux Perf (1)', | 317 buildername='Linux Perf (1)', |
| 303 parent_buildername='Linux Builder', | 318 parent_buildername='Linux Builder', |
| 304 buildnumber=0) + | 319 buildnumber=0) + |
| 305 api.platform('linux', 64) + | 320 api.platform('linux', 64) + |
| 306 api.override_step_data( | 321 api.override_step_data( |
| 307 'blink_perf.all.release', retcode=1) | 322 'blink_perf.all.release', retcode=1) |
| 308 ) | 323 ) |
| OLD | NEW |