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

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

Issue 669813003: Update from chromium https://crrev.com/301725/ (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW
« no previous file with comments | « tools/relocation_packer/src/elf_file.cc ('k') | tools/valgrind/gtest_exclude/aura_unittests.gtest.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698