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

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

Issue 1654183002: Re-enable the ANGLE dEQP tests on Linux on the GPU FYI waterfall (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whitespace Created 4 years, 10 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 #!/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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 # TODO(kbr): switch this to use Swarming, and put the physical 362 # TODO(kbr): switch this to use Swarming, and put the physical
363 # machine into the Swarming pool, once we're convinced it's 363 # machine into the Swarming pool, once we're convinced it's
364 # working well. 364 # working well.
365 'swarming': False, 365 'swarming': False,
366 'os_type': 'linux', 366 'os_type': 'linux',
367 }, 367 },
368 } 368 }
369 } 369 }
370 370
371 COMMON_GTESTS = { 371 COMMON_GTESTS = {
372 # TODO(kbr): re-enable angle_deqp_gles2_tests on Linux. Currently
373 # the target is disabled in the ANGLE workspace for the GN builds.
374 'angle_deqp_gles2_tests': { 372 'angle_deqp_gles2_tests': {
375 'tester_configs': [ 373 'tester_configs': [
376 { 374 {
377 'fyi_only': True, 375 'fyi_only': True,
378 'os_types': ['win'], 376 'os_types': ['win', 'linux'],
Ken Russell (switch to Gerrit) 2016/02/03 00:50:29 We can get rid of the os_types specifier now. It's
379 # Run only on the Win7 Release NVIDIA 32- and 64-bit bots (and 377 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots
380 # trybots) for the time being, at least until more capacity is 378 # (and trybots) for the time being, at least until more capacity is
381 # added. 379 # added.
382 'build_configs': ['Release', 'Release_x64'], 380 'build_configs': ['Release', 'Release_x64'],
383 'swarming_dimension_sets': [ 381 'swarming_dimension_sets': [
384 { 382 {
385 'gpu': '10de:104a', 383 'gpu': '10de:104a',
386 'os': 'Windows-2008ServerR2-SP1' 384 'os': 'Windows-2008ServerR2-SP1'
387 }, 385 },
386 {
387 'gpu': '10de:104a',
388 'os': 'Linux'
389 }
388 ], 390 ],
389 } 391 }
390 ], 392 ],
391 'swarming_shards': 4 393 'swarming_shards': 4
392 }, 394 },
393 # Until we have more capacity, run angle_end2end_tests only on the 395 # Until we have more capacity, run angle_end2end_tests only on the
394 # FYI waterfall and the ANGLE trybots (which mirror the FYI 396 # FYI waterfall and the ANGLE trybots (which mirror the FYI
395 # waterfall). 397 # waterfall).
396 'angle_end2end_tests': { 398 'angle_end2end_tests': {
397 'tester_configs': [ 399 'tester_configs': [
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 '--gtest_filter=CastStreamingApiTestWithPixelOutput.EndToEnd*:' + \ 491 '--gtest_filter=CastStreamingApiTestWithPixelOutput.EndToEnd*:' + \
490 'TabCaptureApiPixelTest.EndToEnd*' 492 'TabCaptureApiPixelTest.EndToEnd*'
491 ] 493 ]
492 } 494 }
493 } 495 }
494 496
495 DEQP_GTESTS = { 497 DEQP_GTESTS = {
496 'angle_deqp_gles3_tests': { 498 'angle_deqp_gles3_tests': {
497 'tester_configs': [ 499 'tester_configs': [
498 { 500 {
499 'os_types': ['win'] 501 'os_types': ['win', 'linux']
500 } 502 }
501 ], 503 ],
502 'swarming_shards': 12 504 'swarming_shards': 12
503 }, 505 },
504 } 506 }
505 507
506 TELEMETRY_TESTS = { 508 TELEMETRY_TESTS = {
507 'context_lost': {}, 509 'context_lost': {},
508 'gpu_process_launch_tests': {'target_name': 'gpu_process'}, 510 'gpu_process_launch_tests': {'target_name': 'gpu_process'},
509 'gpu_rasterization': {}, 511 'gpu_rasterization': {},
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) 749 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True)
748 fp.write('\n') 750 fp.write('\n')
749 751
750 def main(): 752 def main():
751 generate_all_tests(FYI_WATERFALL, True) 753 generate_all_tests(FYI_WATERFALL, True)
752 generate_all_tests(WATERFALL, False) 754 generate_all_tests(WATERFALL, False)
753 return 0 755 return 0
754 756
755 if __name__ == "__main__": 757 if __name__ == "__main__":
756 sys.exit(main()) 758 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | testing/buildbot/gn_isolate_map.pyl » ('J')

Powered by Google App Engine
This is Rietveld 408576698