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

Side by Side Diff: tests/masters_recipes_test.py

Issue 1901883004: Move Android Nexus 9 GPU bot to chromium.gpu.fyi waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fixed master specification for N9 bot. Created 4 years, 8 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 | « scripts/slave/recipes/chromium.gpu.recipe_autogen.expected/Android_Debug__Nexus_9_.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import argparse 6 import argparse
7 import json 7 import json
8 import os 8 import os
9 import subprocess 9 import subprocess
10 import sys 10 import sys
(...skipping 29 matching lines...) Expand all
40 'Google Chrome Linux x64', 40 'Google Chrome Linux x64',
41 'Google Chrome Mac', 41 'Google Chrome Mac',
42 'Google Chrome Win', 42 'Google Chrome Win',
43 ], 43 ],
44 'master.chromium.chromiumos': [ 44 'master.chromium.chromiumos': [
45 'Linux ChromiumOS Full', 45 'Linux ChromiumOS Full',
46 ], 46 ],
47 'master.chromium.gpu': [ 47 'master.chromium.gpu': [
48 'Android Debug (Nexus 5)', 48 'Android Debug (Nexus 5)',
49 'Android Debug (Nexus 6)', 49 'Android Debug (Nexus 6)',
50 'Android Debug (Nexus 9)',
51 'GPU Linux Builder (dbg)', 50 'GPU Linux Builder (dbg)',
52 'GPU Mac Builder (dbg)', 51 'GPU Mac Builder (dbg)',
53 'GPU Win Builder (dbg)', 52 'GPU Win Builder (dbg)',
54 'Linux Debug (NVIDIA)', 53 'Linux Debug (NVIDIA)',
55 'Mac 10.10 Debug (Intel)', 54 'Mac 10.10 Debug (Intel)',
56 'Mac Retina Debug', 55 'Mac Retina Debug',
57 'Mac 10.10 Retina Debug (AMD)', 56 'Mac 10.10 Retina Debug (AMD)',
58 'Mac 10.10 Retina Release (AMD)', 57 'Mac 10.10 Retina Release (AMD)',
59 'Win7 Debug (NVIDIA)', 58 'Win7 Debug (NVIDIA)',
60 ], 59 ],
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 exit_code = 1 236 exit_code = 1
238 print 'Unused suppressions:' 237 print 'Unused suppressions:'
239 print '\n'.join(sorted( 238 print '\n'.join(sorted(
240 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) 239 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions))
241 240
242 return exit_code 241 return exit_code
243 242
244 243
245 if __name__ == '__main__': 244 if __name__ == '__main__':
246 sys.exit(main(sys.argv[1:])) 245 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « scripts/slave/recipes/chromium.gpu.recipe_autogen.expected/Android_Debug__Nexus_9_.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698