summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-05 21:49:15 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-05 21:49:15 +0000
commite5bc4a25ebe2232b4a39563e829b2ee262bbcc18 (patch)
treeb1694e0a0822ea3444ec60962897a6290d70fae0
parent3c23a43653b8d1d315deb94bb9d89feddff091f6 (diff)
downloadchromium_src-e5bc4a25ebe2232b4a39563e829b2ee262bbcc18.zip
chromium_src-e5bc4a25ebe2232b4a39563e829b2ee262bbcc18.tar.gz
chromium_src-e5bc4a25ebe2232b4a39563e829b2ee262bbcc18.tar.bz2
GTTF: Disable new test launcher under Valgrind.
Currently it breaks sanity tests. BUG=236893 R=thestig@chromium.org Review URL: https://codereview.chromium.org/107153003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239045 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xtools/valgrind/chrome_tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index b9c11da..b92536c 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -119,6 +119,9 @@ class ChromeTests:
# Valgrind runs tests slowly, so slow tests hurt more; show elapased time
# so we can find the slowpokes.
cmd.append("--gtest_print_time")
+ # Built-in test launcher for gtest-based executables runs tests using
+ # multiple process by default. Force the single-process mode back.
+ cmd.append("--single-process-tests")
if self._options.gtest_repeat:
cmd.append("--gtest_repeat=%s" % self._options.gtest_repeat)
if self._options.gtest_shuffle: