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

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

Issue 1984623002: Add test case for WebRTC patch on Chromium trybots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Updated expectations for https://codereview.chromium.org/1976243002/#ps40001 Created 4 years, 7 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/use_webrtc_patch_on_chromium_trybot.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 'depot_tools/bot_update', 10 'depot_tools/bot_update',
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 745
746 yield ( 746 yield (
747 api.test('use_v8_patch_on_chromium_trybot') + 747 api.test('use_v8_patch_on_chromium_trybot') +
748 props(buildername='win_chromium_rel_ng', 748 props(buildername='win_chromium_rel_ng',
749 mastername='tryserver.chromium.win', 749 mastername='tryserver.chromium.win',
750 patch_project='v8') + 750 patch_project='v8') +
751 api.platform.name('win') 751 api.platform.name('win')
752 ) 752 )
753 753
754 yield ( 754 yield (
755 api.test('use_webrtc_patch_on_chromium_trybot') +
756 props(buildername='win_chromium_rel_ng',
757 mastername='tryserver.chromium.win',
758 patch_project='webrtc') +
759 api.platform.name('win')
760 )
761
762 yield (
755 api.test('use_skia_patch_on_chromium_trybot') + 763 api.test('use_skia_patch_on_chromium_trybot') +
756 props(buildername='win_chromium_rel_ng', 764 props(buildername='win_chromium_rel_ng',
757 mastername='tryserver.chromium.win', 765 mastername='tryserver.chromium.win',
758 patch_project='skia') + 766 patch_project='skia') +
759 api.platform.name('win') 767 api.platform.name('win')
760 ) 768 )
761 769
762 # Tests that we run nothing if analyze said we didn't have to run anything 770 # Tests that we run nothing if analyze said we didn't have to run anything
763 # and there were no source file changes. 771 # and there were no source file changes.
764 yield ( 772 yield (
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 props(mastername='tryserver.v8', 903 props(mastername='tryserver.v8',
896 buildername='v8_linux_blink_rel', 904 buildername='v8_linux_blink_rel',
897 patch_project='v8') + 905 patch_project='v8') +
898 api.platform.name('linux') + 906 api.platform.name('linux') +
899 suppress_analyze(more_exclusions=['v8/f.*']) + 907 suppress_analyze(more_exclusions=['v8/f.*']) +
900 api.override_step_data('webkit_tests (with patch)', 908 api.override_step_data('webkit_tests (with patch)',
901 api.test_utils.canned_test_output(passing=False)) + 909 api.test_utils.canned_test_output(passing=False)) +
902 api.override_step_data('webkit_tests (without patch)', 910 api.override_step_data('webkit_tests (without patch)',
903 api.test_utils.canned_test_output(passing=True, minimal=True)) 911 api.test_utils.canned_test_output(passing=True, minimal=True))
904 ) 912 )
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/use_webrtc_patch_on_chromium_trybot.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698