diff options
author | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 11:51:29 +0000 |
---|---|---|
committer | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 11:51:29 +0000 |
commit | d267ee95429eca5bff2e2d499725ca222848a1cf (patch) | |
tree | f0e48a742304deccd14406482dc4be08b07acb68 /tools/valgrind/chrome_tests.py | |
parent | b1df09c7e09e9578531e97aeb5e0a5ac92447234 (diff) | |
download | chromium_src-d267ee95429eca5bff2e2d499725ca222848a1cf.zip chromium_src-d267ee95429eca5bff2e2d499725ca222848a1cf.tar.gz chromium_src-d267ee95429eca5bff2e2d499725ca222848a1cf.tar.bz2 |
Added sanity checks for base_unittests to Memcheck and ThreadSanitizer test runners.
Note that the sanity checks may fail if the tests are ran with the sanity tests excluded (e.g. local test runs). I suppose this shouldn't be a problem, because the exit code matters only on buildbots.
Review URL: http://codereview.chromium.org/598013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38612 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/chrome_tests.py')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index c94aa77..eb46cd1 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -221,7 +221,7 @@ class ChromeTests: # Sets LD_LIBRARY_PATH to the build folder so external libraries can be # loaded. os.putenv("LD_LIBRARY_PATH", self._options.build_dir) - return valgrind_test.RunTool(cmd) + return valgrind_test.RunTool(cmd, module) def TestBase(self): return self.SimpleTest("base", "base_unittests") |