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

Side by Side Diff: content/test/gpu/generate_buildbot_json.py

Issue 2761173003: Update P400 buildbot name / device ID with card update complete (Closed)
Patch Set: update Created 3 years, 9 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 | testing/buildbot/chromium.gpu.fyi.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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 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 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in 6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in
7 the src/testing/buildbot directory. Maintaining these files by hand is 7 the src/testing/buildbot directory. Maintaining these files by hand is
8 too unwieldy. 8 too unwieldy.
9 """ 9 """
10 10
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'gpu': '8086:1912', 297 'gpu': '8086:1912',
298 'os': 'Windows-10', 298 'os': 'Windows-10',
299 }, 299 },
300 ], 300 ],
301 'build_config': 'Debug', 301 'build_config': 'Debug',
302 # This bot is a one-off and doesn't have similar slaves in the 302 # This bot is a one-off and doesn't have similar slaves in the
303 # swarming pool. 303 # swarming pool.
304 'swarming': False, 304 'swarming': False,
305 'os_type': 'win', 305 'os_type': 'win',
306 }, 306 },
307 'Win10 Release (NVIDIA Quadro M2000)': { 307 'Win10 Release (NVIDIA Quadro P400)': {
308 'swarming_dimensions': [ 308 'swarming_dimensions': [
309 { 309 {
310 'gpu': '10de:1430', 310 'gpu': '10de:1cb3',
311 'os': 'Windows-10' 311 'os': 'Windows-10'
312 }, 312 },
313 ], 313 ],
314 'build_config': 'Release', 314 'build_config': 'Release',
315 # This bot is a one-off and doesn't have similar slaves in the 315 # This bot is a one-off and doesn't have similar slaves in the
316 # swarming pool. 316 # swarming pool.
317 'swarming': False, 317 'swarming': False,
318 'os_type': 'win', 318 'os_type': 'win',
319 }, 319 },
320 'Win7 Release (AMD R5 230)': { 320 'Win7 Release (AMD R5 230)': {
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 'gpu': '10de:0f02', 535 'gpu': '10de:0f02',
536 'os': 'Ubuntu' 536 'os': 'Ubuntu'
537 }, 537 },
538 ], 538 ],
539 'build_config': 'Release', 539 'build_config': 'Release',
540 # This bot is a one-off and doesn't have similar slaves in the 540 # This bot is a one-off and doesn't have similar slaves in the
541 # swarming pool. 541 # swarming pool.
542 'swarming': False, 542 'swarming': False,
543 'os_type': 'linux', 543 'os_type': 'linux',
544 }, 544 },
545 'Linux Release (NVIDIA Quadro M2000)': { 545 'Linux Release (NVIDIA Quadro P400)': {
546 'swarming_dimensions': [ 546 'swarming_dimensions': [
547 { 547 {
548 'gpu': '10de:1430', 548 'gpu': '10de:1cb3',
549 'os': 'Ubuntu' 549 'os': 'Ubuntu'
550 }, 550 },
551 ], 551 ],
552 'build_config': 'Release', 552 'build_config': 'Release',
553 # This bot is a one-off and doesn't have similar slaves in the 553 # This bot is a one-off and doesn't have similar slaves in the
554 # swarming pool. 554 # swarming pool.
555 'swarming': False, 555 'swarming': False,
556 'os_type': 'linux', 556 'os_type': 'linux',
557 }, 557 },
558 'Linux Debug (NVIDIA)': { 558 'Linux Debug (NVIDIA)': {
(...skipping 1812 matching lines...) Expand 10 before | Expand all | Expand 10 after
2371 install_parent_links(WATERFALL) 2371 install_parent_links(WATERFALL)
2372 install_parent_links(V8_FYI_WATERFALL) 2372 install_parent_links(V8_FYI_WATERFALL)
2373 2373
2374 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') 2374 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json')
2375 generate_all_tests(WATERFALL, 'chromium.gpu.json') 2375 generate_all_tests(WATERFALL, 'chromium.gpu.json')
2376 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') 2376 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json')
2377 return 0 2377 return 0
2378 2378
2379 if __name__ == "__main__": 2379 if __name__ == "__main__":
2380 sys.exit(main()) 2380 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698