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

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

Issue 149363012: Re-add blink_heap_unittests to android recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix isolate filename Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/pylib/gtest/setup.py » ('j') | 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 multiprocessing 10 import multiprocessing
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 def RunUnitTests(options): 428 def RunUnitTests(options):
429 RunTestSuites(options, gtest_config.STABLE_TEST_SUITES) 429 RunTestSuites(options, gtest_config.STABLE_TEST_SUITES)
430 430
431 431
432 def RunInstrumentationTests(options): 432 def RunInstrumentationTests(options):
433 for test in INSTRUMENTATION_TESTS.itervalues(): 433 for test in INSTRUMENTATION_TESTS.itervalues():
434 RunInstrumentationSuite(options, test) 434 RunInstrumentationSuite(options, test)
435 435
436 436
437 def RunWebkitTests(options): 437 def RunWebkitTests(options):
438 RunTestSuites(options, ['webkit_unit_tests']) 438 RunTestSuites(options, ['webkit_unit_tests', 'blink_heap_unittests'])
439 RunWebkitLint(options.target) 439 RunWebkitLint(options.target)
440 440
441 441
442 def RunWebRTCChromiumTests(options): 442 def RunWebRTCChromiumTests(options):
443 RunTestSuites(options, gtest_config.WEBRTC_CHROMIUM_TEST_SUITES) 443 RunTestSuites(options, gtest_config.WEBRTC_CHROMIUM_TEST_SUITES)
444 444
445 445
446 def RunWebRTCNativeTests(options): 446 def RunWebRTCNativeTests(options):
447 RunTestSuites(options, gtest_config.WEBRTC_NATIVE_TEST_SUITES) 447 RunTestSuites(options, gtest_config.WEBRTC_NATIVE_TEST_SUITES)
448 448
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 setattr(options, 'target', options.factory_properties.get('target', 'Debug')) 620 setattr(options, 'target', options.factory_properties.get('target', 'Debug'))
621 if options.coverage_bucket: 621 if options.coverage_bucket:
622 setattr(options, 'coverage_dir', 622 setattr(options, 'coverage_dir',
623 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) 623 os.path.join(CHROME_OUT_DIR, options.target, 'coverage'))
624 624
625 MainTestWrapper(options) 625 MainTestWrapper(options)
626 626
627 627
628 if __name__ == '__main__': 628 if __name__ == '__main__':
629 sys.exit(main(sys.argv)) 629 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/gtest/setup.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698