| 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 import collections | 5 import collections |
| 6 | 6 |
| 7 from recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'amp', | 10 'amp', |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 '--test-machine-name=\"${buildername}\"', | 394 '--test-machine-name=\"${buildername}\"', |
| 395 '--build-revision=\"${got_revision}\"', | 395 '--build-revision=\"${got_revision}\"', |
| 396 ], | 396 ], |
| 397 'swarming': {'can_use_on_swarming_builders': True}, | 397 'swarming': {'can_use_on_swarming_builders': True}, |
| 398 }, | 398 }, |
| 399 ], | 399 ], |
| 400 }, | 400 }, |
| 401 })) + | 401 })) + |
| 402 suppress_analyze() + | 402 suppress_analyze() + |
| 403 api.override_step_data( | 403 api.override_step_data( |
| 404 'telemetry_gpu_unittests (with patch)', | 404 'telemetry_gpu_unittests (with patch) on Ubuntu-12.04', |
| 405 api.test_utils.canned_isolated_script_output( | 405 api.test_utils.canned_isolated_script_output( |
| 406 passing=True, is_win=False, swarming=True)) | 406 passing=True, is_win=False, swarming=True)) |
| 407 ) | 407 ) |
| 408 | 408 |
| 409 yield ( | 409 yield ( |
| 410 api.test('swarming_trigger_failure') + | 410 api.test('swarming_trigger_failure') + |
| 411 props() + | 411 props() + |
| 412 api.platform.name('linux') + | 412 api.platform.name('linux') + |
| 413 api.override_step_data('read test spec', api.json.output({ | 413 api.override_step_data('read test spec', api.json.output({ |
| 414 'Linux Tests': { | 414 'Linux Tests': { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 431 'Linux Tests': { | 431 'Linux Tests': { |
| 432 'gtest_tests': [ | 432 'gtest_tests': [ |
| 433 { | 433 { |
| 434 'test': 'gl_tests', | 434 'test': 'gl_tests', |
| 435 'swarming': {'can_use_on_swarming_builders': True}, | 435 'swarming': {'can_use_on_swarming_builders': True}, |
| 436 }, | 436 }, |
| 437 ], | 437 ], |
| 438 }, | 438 }, |
| 439 })) + | 439 })) + |
| 440 suppress_analyze() + | 440 suppress_analyze() + |
| 441 api.override_step_data('gl_tests (with patch)', | 441 api.override_step_data('gl_tests (with patch) on Ubuntu-12.04', |
| 442 canned_test(passing=False)) | 442 canned_test(passing=False)) |
| 443 ) | 443 ) |
| 444 | 444 |
| 445 yield ( | 445 yield ( |
| 446 api.test('amp_test_failure') + | 446 api.test('amp_test_failure') + |
| 447 props(buildername='android_amp', | 447 props(buildername='android_amp', |
| 448 mastername='tryserver.chromium.android') + | 448 mastername='tryserver.chromium.android') + |
| 449 api.platform.name('linux') + | 449 api.platform.name('linux') + |
| 450 suppress_analyze() + | 450 suppress_analyze() + |
| 451 api.override_step_data('[collect] base_unittests (with patch)', | 451 api.override_step_data('[collect] base_unittests (with patch)', |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 props(mastername='tryserver.v8', | 876 props(mastername='tryserver.v8', |
| 877 buildername='v8_linux_blink_rel', | 877 buildername='v8_linux_blink_rel', |
| 878 patch_project='v8') + | 878 patch_project='v8') + |
| 879 api.platform.name('linux') + | 879 api.platform.name('linux') + |
| 880 suppress_analyze(more_exclusions=['v8/f.*']) + | 880 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 881 api.override_step_data('webkit_tests (with patch)', | 881 api.override_step_data('webkit_tests (with patch)', |
| 882 api.test_utils.canned_test_output(passing=False)) + | 882 api.test_utils.canned_test_output(passing=False)) + |
| 883 api.override_step_data('webkit_tests (without patch)', | 883 api.override_step_data('webkit_tests (without patch)', |
| 884 api.test_utils.canned_test_output(passing=True, minimal=True)) | 884 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 885 ) | 885 ) |
| OLD | NEW |