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

Side by Side Diff: build/android/buildbot/bb_device_steps.py

Issue 1119283005: Revert of Run webgl_conformance with the Android WebView shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | no next file » | 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 (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
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
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))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698