OLD | NEW |
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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 { | 415 { |
416 'gpu': '1002:6821', | 416 'gpu': '1002:6821', |
417 'hidpi': '1', | 417 'hidpi': '1', |
418 'os': 'Mac' | 418 'os': 'Mac' |
419 }, | 419 }, |
420 ], | 420 ], |
421 'build_config': 'Debug', | 421 'build_config': 'Debug', |
422 'swarming': True, | 422 'swarming': True, |
423 'os_type': 'mac', | 423 'os_type': 'mac', |
424 }, | 424 }, |
| 425 'Mac Experimental Release (Intel)': { |
| 426 'swarming_dimensions': [ |
| 427 { |
| 428 'gpu': '8086:0a2e', |
| 429 'os': 'Mac' |
| 430 }, |
| 431 ], |
| 432 'build_config': 'Release', |
| 433 # This bot is a one-off for testing purposes. |
| 434 'swarming': False, |
| 435 'os_type': 'mac', |
| 436 }, |
425 'Mac Experimental Retina Release (AMD)': { | 437 'Mac Experimental Retina Release (AMD)': { |
426 'swarming_dimensions': [ | 438 'swarming_dimensions': [ |
427 { | 439 { |
428 'gpu': '1002:6821', | 440 'gpu': '1002:6821', |
429 'hidpi': '1', | 441 'hidpi': '1', |
430 'os': 'Mac' | 442 'os': 'Mac' |
431 }, | 443 }, |
432 ], | 444 ], |
433 'build_config': 'Release', | 445 'build_config': 'Release', |
434 # This bot is a one-off for testing purposes. | 446 # This bot is a one-off for testing purposes. |
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1440 { | 1452 { |
1441 # Run this on the FYI waterfall and optional tryservers. | 1453 # Run this on the FYI waterfall and optional tryservers. |
1442 'predicate': Predicates.FYI_AND_OPTIONAL, | 1454 'predicate': Predicates.FYI_AND_OPTIONAL, |
1443 'os_types': ['win', 'linux', 'mac'], | 1455 'os_types': ['win', 'linux', 'mac'], |
1444 }, | 1456 }, |
1445 ], | 1457 ], |
1446 'disabled_tester_configs': [ | 1458 'disabled_tester_configs': [ |
1447 { | 1459 { |
1448 'names': [ | 1460 'names': [ |
1449 'Linux ChromiumOS Ozone (Intel)', | 1461 'Linux ChromiumOS Ozone (Intel)', |
| 1462 'Mac Experimental Release (Intel)', |
1450 'Mac Experimental Retina Release (AMD)', | 1463 'Mac Experimental Retina Release (AMD)', |
1451 'Mac Experimental Retina Release (NVIDIA)', | 1464 'Mac Experimental Retina Release (NVIDIA)', |
1452 'Mac Pro Release (AMD)', | 1465 'Mac Pro Release (AMD)', |
1453 ], | 1466 ], |
1454 }, | 1467 }, |
1455 ], | 1468 ], |
1456 }, | 1469 }, |
1457 'tab_capture_end2end_tests': { | 1470 'tab_capture_end2end_tests': { |
1458 'tester_configs': [ | 1471 'tester_configs': [ |
1459 { | 1472 { |
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2391 install_parent_links(WATERFALL) | 2404 install_parent_links(WATERFALL) |
2392 install_parent_links(V8_FYI_WATERFALL) | 2405 install_parent_links(V8_FYI_WATERFALL) |
2393 | 2406 |
2394 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2407 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
2395 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2408 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
2396 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2409 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
2397 return 0 | 2410 return 0 |
2398 | 2411 |
2399 if __name__ == "__main__": | 2412 if __name__ == "__main__": |
2400 sys.exit(main()) | 2413 sys.exit(main()) |
OLD | NEW |