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

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

Issue 2010953002: Change chromium.memory.fyi to chromium.memory.full (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix file names as well Created 4 years, 6 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 'adb', 6 'adb',
7 'amp', 7 'amp',
8 'bisect_tester', 8 'bisect_tester',
9 'depot_tools/bot_update', 9 'depot_tools/bot_update',
10 'chromium', 10 'chromium',
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 'Mac ASan 64 Tests (1)': { 835 'Mac ASan 64 Tests (1)': {
836 'gtest_tests': [ 836 'gtest_tests': [
837 'browser_tests', 837 'browser_tests',
838 ], 838 ],
839 }, 839 },
840 })) 840 }))
841 ) 841 )
842 842
843 yield ( 843 yield (
844 api.test('tsan') + 844 api.test('tsan') +
845 api.properties.generic(mastername='chromium.memory.fyi', 845 api.properties.generic(mastername='chromium.memory.full',
846 buildername='Linux TSan Tests', 846 buildername='Linux TSan Tests',
847 parent_buildername='Chromium Linux TSan Builder') + 847 parent_buildername='Chromium Linux TSan Builder') +
848 api.platform('linux', 64) + 848 api.platform('linux', 64) +
849 api.override_step_data('read test spec', api.json.output({ 849 api.override_step_data('read test spec', api.json.output({
850 'Linux TSan Tests': { 850 'Linux TSan Tests': {
851 'compile_targets': ['base_unittests'], 851 'compile_targets': ['base_unittests'],
852 'gtest_tests': ['base_unittests'], 852 'gtest_tests': ['base_unittests'],
853 }, 853 },
854 })) 854 }))
855 ) 855 )
856 856
857 yield ( 857 yield (
858 api.test('msan') + 858 api.test('msan') +
859 api.properties.generic(mastername='chromium.memory.fyi', 859 api.properties.generic(mastername='chromium.memory.full',
860 buildername='Linux MSan Tests', 860 buildername='Linux MSan Tests',
861 parent_buildername='Chromium Linux MSan Builder') + 861 parent_buildername='Chromium Linux MSan Builder') +
862 api.platform('linux', 64) + 862 api.platform('linux', 64) +
863 api.override_step_data('read test spec', api.json.output({ 863 api.override_step_data('read test spec', api.json.output({
864 'Linux MSan Tests': { 864 'Linux MSan Tests': {
865 'compile_targets': ['base_unittests'], 865 'compile_targets': ['base_unittests'],
866 'gtest_tests': ['base_unittests'], 866 'gtest_tests': ['base_unittests'],
867 }, 867 },
868 })) 868 }))
869 ) 869 )
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1081 1081
1082 yield ( 1082 yield (
1083 api.test('kitchen_path_config') + 1083 api.test('kitchen_path_config') +
1084 api.properties( 1084 api.properties(
1085 mastername='chromium.fyi', 1085 mastername='chromium.fyi',
1086 buildername='Linux Kitchen (kitchen_run)', 1086 buildername='Linux Kitchen (kitchen_run)',
1087 slavename='build1-a1', 1087 slavename='build1-a1',
1088 buildnumber='77457', 1088 buildnumber='77457',
1089 path_config='kitchen') 1089 path_config='kitchen')
1090 ) 1090 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698