Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 2327543002: chromium_tests: add an option to disable deapplying patch on some trybots (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'depot_tools/bot_update', 6 'depot_tools/bot_update',
7 'chromium', 7 'chromium',
8 'chromium_android', 8 'chromium_android',
9 'chromium_checkout', 9 'chromium_checkout',
10 'chromium_swarming', 10 'chromium_swarming',
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 props(mastername='tryserver.v8', 729 props(mastername='tryserver.v8',
730 buildername='v8_linux_blink_rel', 730 buildername='v8_linux_blink_rel',
731 patch_project='v8') + 731 patch_project='v8') +
732 api.platform.name('linux') + 732 api.platform.name('linux') +
733 suppress_analyze(more_exclusions=['v8/f.*']) + 733 suppress_analyze(more_exclusions=['v8/f.*']) +
734 api.override_step_data('webkit_tests (with patch)', 734 api.override_step_data('webkit_tests (with patch)',
735 api.test_utils.canned_test_output(passing=False)) + 735 api.test_utils.canned_test_output(passing=False)) +
736 api.override_step_data('webkit_tests (without patch)', 736 api.override_step_data('webkit_tests (without patch)',
737 api.test_utils.canned_test_output(passing=True, minimal=True)) 737 api.test_utils.canned_test_output(passing=True, minimal=True))
738 ) 738 )
739
740 yield (
741 api.test('dont_deapply_patch') +
742 props(mastername='tryserver.chromium.mac',
743 buildername='mac_optional_gpu_tests_rel') +
744 api.platform.name('mac') +
745 api.override_step_data(
746 'read test spec (chromium.gpu.fyi.json)',
747 api.json.output({
748 'Optional Mac Retina Release': {
749 'gtest_tests': ['base_unittests'],
750 },
751 })
752 ) +
753 suppress_analyze()
754 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698