OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2013 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 collections | 6 import collections |
7 import glob | 7 import glob |
8 import hashlib | 8 import hashlib |
9 import json | 9 import json |
10 import os | 10 import os |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 '--os-type', | 530 '--os-type', |
531 'android', | 531 'android', |
532 '--test-machine-name', | 532 '--test-machine-name', |
533 EscapeBuilderName(builder_name)]) | 533 EscapeBuilderName(builder_name)]) |
534 | 534 |
535 bb_annotations.PrintNamedStep('webgl_conformance_tests') | 535 bb_annotations.PrintNamedStep('webgl_conformance_tests') |
536 RunCmd(['content/test/gpu/run_gpu_test.py', | 536 RunCmd(['content/test/gpu/run_gpu_test.py', |
537 '--browser=android-content-shell', 'webgl_conformance', | 537 '--browser=android-content-shell', 'webgl_conformance', |
538 '--webgl-conformance-version=1.0.1']) | 538 '--webgl-conformance-version=1.0.1']) |
539 | 539 |
| 540 bb_annotations.PrintNamedStep('android_webview_webgl_conformance_tests') |
| 541 RunCmd(['content/test/gpu/run_gpu_test.py', |
| 542 '--browser=android-webview-shell', 'webgl_conformance', |
| 543 '--webgl-conformance-version=1.0.1']) |
| 544 |
540 bb_annotations.PrintNamedStep('gpu_rasterization_tests') | 545 bb_annotations.PrintNamedStep('gpu_rasterization_tests') |
541 RunCmd(['content/test/gpu/run_gpu_test.py', | 546 RunCmd(['content/test/gpu/run_gpu_test.py', |
542 'gpu_rasterization', | 547 'gpu_rasterization', |
543 '--browser', | 548 '--browser', |
544 'android-content-shell', | 549 'android-content-shell', |
545 '--build-revision', | 550 '--build-revision', |
546 str(revision), | 551 str(revision), |
547 '--test-machine-name', | 552 '--test-machine-name', |
548 EscapeBuilderName(builder_name)]) | 553 EscapeBuilderName(builder_name)]) |
549 | 554 |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 | 765 |
761 if options.coverage_bucket: | 766 if options.coverage_bucket: |
762 setattr(options, 'coverage_dir', | 767 setattr(options, 'coverage_dir', |
763 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) | 768 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) |
764 | 769 |
765 MainTestWrapper(options) | 770 MainTestWrapper(options) |
766 | 771 |
767 | 772 |
768 if __name__ == '__main__': | 773 if __name__ == '__main__': |
769 sys.exit(main(sys.argv)) | 774 sys.exit(main(sys.argv)) |
OLD | NEW |