OLD | NEW |
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 Loading... |
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 Loading... |
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()) |
OLD | NEW |