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

Side by Side Diff: tools/valgrind/chrome_tests.py

Issue 467193004: Add "extensions_unittests" as a valid test specifier to chrome_tests.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | 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) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 ''' Runs various chrome tests through valgrind_test.py.''' 6 ''' Runs various chrome tests through valgrind_test.py.'''
7 7
8 import glob 8 import glob
9 import logging 9 import logging
10 import multiprocessing 10 import multiprocessing
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 "cloud_print_unittests": TestCloudPrint, 653 "cloud_print_unittests": TestCloudPrint,
654 "components": TestComponents,"components_unittests": TestComponents, 654 "components": TestComponents,"components_unittests": TestComponents,
655 "compositor": TestCompositor,"compositor_unittests": TestCompositor, 655 "compositor": TestCompositor,"compositor_unittests": TestCompositor,
656 "content": TestContent, "content_unittests": TestContent, 656 "content": TestContent, "content_unittests": TestContent,
657 "content_browsertests": TestContentBrowser, 657 "content_browsertests": TestContentBrowser,
658 "courgette": TestCourgette, "courgette_unittests": TestCourgette, 658 "courgette": TestCourgette, "courgette_unittests": TestCourgette,
659 "crypto": TestCrypto, "crypto_unittests": TestCrypto, 659 "crypto": TestCrypto, "crypto_unittests": TestCrypto,
660 "device": TestDevice, "device_unittests": TestDevice, 660 "device": TestDevice, "device_unittests": TestDevice,
661 "display": TestDisplay, "display_unittests": TestDisplay, 661 "display": TestDisplay, "display_unittests": TestDisplay,
662 "events": TestEvents, "events_unittests": TestEvents, 662 "events": TestEvents, "events_unittests": TestEvents,
663 "extensions": TestExtensions, 663 "extensions": TestExtensions, "extensions_unittests": TestExtensions,
664 "ffmpeg": TestFFmpeg, "ffmpeg_unittests": TestFFmpeg, 664 "ffmpeg": TestFFmpeg, "ffmpeg_unittests": TestFFmpeg,
665 "ffmpeg_regression_tests": TestFFmpegRegressions, 665 "ffmpeg_regression_tests": TestFFmpegRegressions,
666 "gcm": TestGCM, "gcm_unit_tests": TestGCM, 666 "gcm": TestGCM, "gcm_unit_tests": TestGCM,
667 "gin": TestGin, "gin_unittests": TestGin, 667 "gin": TestGin, "gin_unittests": TestGin,
668 "gfx": TestGfx, "gfx_unittests": TestGfx, 668 "gfx": TestGfx, "gfx_unittests": TestGfx,
669 "google_apis": TestGoogleApis, 669 "google_apis": TestGoogleApis,
670 "gpu": TestGPU, "gpu_unittests": TestGPU, 670 "gpu": TestGPU, "gpu_unittests": TestGPU,
671 "ipc": TestIpc, "ipc_tests": TestIpc, 671 "ipc": TestIpc, "ipc_tests": TestIpc,
672 "installer_util": TestInstallerUtil, 672 "installer_util": TestInstallerUtil,
673 "interactive_ui": TestInteractiveUI, 673 "interactive_ui": TestInteractiveUI,
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 776
777 for t in options.test: 777 for t in options.test:
778 tests = ChromeTests(options, args, t) 778 tests = ChromeTests(options, args, t)
779 ret = tests.Run() 779 ret = tests.Run()
780 if ret: return ret 780 if ret: return ret
781 return 0 781 return 0
782 782
783 783
784 if __name__ == "__main__": 784 if __name__ == "__main__":
785 sys.exit(_main()) 785 sys.exit(_main())
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