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 | |
545 bb_annotations.PrintNamedStep('gpu_rasterization_tests') | 540 bb_annotations.PrintNamedStep('gpu_rasterization_tests') |
546 RunCmd(['content/test/gpu/run_gpu_test.py', | 541 RunCmd(['content/test/gpu/run_gpu_test.py', |
547 'gpu_rasterization', | 542 'gpu_rasterization', |
548 '--browser', | 543 '--browser', |
549 'android-content-shell', | 544 'android-content-shell', |
550 '--build-revision', | 545 '--build-revision', |
551 str(revision), | 546 str(revision), |
552 '--test-machine-name', | 547 '--test-machine-name', |
553 EscapeBuilderName(builder_name)]) | 548 EscapeBuilderName(builder_name)]) |
554 | 549 |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 | 760 |
766 if options.coverage_bucket: | 761 if options.coverage_bucket: |
767 setattr(options, 'coverage_dir', | 762 setattr(options, 'coverage_dir', |
768 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) | 763 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) |
769 | 764 |
770 MainTestWrapper(options) | 765 MainTestWrapper(options) |
771 | 766 |
772 | 767 |
773 if __name__ == '__main__': | 768 if __name__ == '__main__': |
774 sys.exit(main(sys.argv)) | 769 sys.exit(main(sys.argv)) |
OLD | NEW |