| 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 "ipc": TestIpc, "ipc_tests": TestIpc, | 683 "ipc": TestIpc, "ipc_tests": TestIpc, |
| 684 "installer_util": TestInstallerUtil, | 684 "installer_util": TestInstallerUtil, |
| 685 "interactive_ui": TestInteractiveUI, | 685 "interactive_ui": TestInteractiveUI, |
| 686 "jingle": TestJingle, "jingle_unittests": TestJingle, | 686 "jingle": TestJingle, "jingle_unittests": TestJingle, |
| 687 "keyboard": TestKeyboard, "keyboard_unittests": TestKeyboard, | 687 "keyboard": TestKeyboard, "keyboard_unittests": TestKeyboard, |
| 688 "layout": TestLayout, "layout_tests": TestLayout, | 688 "layout": TestLayout, "layout_tests": TestLayout, |
| 689 "media": TestMedia, "media_unittests": TestMedia, | 689 "media": TestMedia, "media_unittests": TestMedia, |
| 690 "message_center": TestMessageCenter, | 690 "message_center": TestMessageCenter, |
| 691 "message_center_unittests" : TestMessageCenter, | 691 "message_center_unittests" : TestMessageCenter, |
| 692 "mojo_common": TestMojoCommon, | 692 "mojo_common": TestMojoCommon, |
| 693 "mojo_system": TestMojoSystem, |
| 693 "mojo_public_system": TestMojoPublicSystem, | 694 "mojo_public_system": TestMojoPublicSystem, |
| 694 "mojo_public_utility": TestMojoPublicUtility, | 695 "mojo_public_utility": TestMojoPublicUtility, |
| 695 "mojo_public_bindings": TestMojoPublicBindings, | 696 "mojo_public_bindings": TestMojoPublicBindings, |
| 696 "mojo_public_env": TestMojoPublicEnv, | 697 "mojo_public_env": TestMojoPublicEnv, |
| 697 "mojo_public_sysperf": TestMojoPublicSysPerf, | 698 "mojo_public_sysperf": TestMojoPublicSysPerf, |
| 698 "net": TestNet, "net_unittests": TestNet, | 699 "net": TestNet, "net_unittests": TestNet, |
| 699 "net_perf": TestNetPerf, "net_perftests": TestNetPerf, | 700 "net_perf": TestNetPerf, "net_perftests": TestNetPerf, |
| 700 "phonenumber": TestPhoneNumber, | 701 "phonenumber": TestPhoneNumber, |
| 701 "libphonenumber_unittests": TestPhoneNumber, | 702 "libphonenumber_unittests": TestPhoneNumber, |
| 702 "ppapi": TestPPAPI, "ppapi_unittests": TestPPAPI, | 703 "ppapi": TestPPAPI, "ppapi_unittests": TestPPAPI, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 | 785 |
| 785 for t in options.test: | 786 for t in options.test: |
| 786 tests = ChromeTests(options, args, t) | 787 tests = ChromeTests(options, args, t) |
| 787 ret = tests.Run() | 788 ret = tests.Run() |
| 788 if ret: return ret | 789 if ret: return ret |
| 789 return 0 | 790 return 0 |
| 790 | 791 |
| 791 | 792 |
| 792 if __name__ == "__main__": | 793 if __name__ == "__main__": |
| 793 sys.exit(_main()) | 794 sys.exit(_main()) |
| OLD | NEW |