summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-03 22:50:49 +0000
committerjln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-03 22:50:49 +0000
commitdd25ba2414a36c6ef56dc312ad929d78a95a352e (patch)
tree37ffcaec962374c2588d44fb74836bcea2b16783 /tools
parentf221d569ed75dad6b6466ebd1b14560cb7a5729d (diff)
downloadchromium_src-dd25ba2414a36c6ef56dc312ad929d78a95a352e.zip
chromium_src-dd25ba2414a36c6ef56dc312ad929d78a95a352e.tar.gz
chromium_src-dd25ba2414a36c6ef56dc312ad929d78a95a352e.tar.bz2
Valgrind: enable Linux Sandbox tests under Valgrind
Most of these tests will actually not really run, since the probe process will fail / crash under Valgrind. At least this allows us to test syscall.cc and in the future, the compiler (once policies get compiled even when we lack kernel support). BUG=163996 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/11411326 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170833 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/valgrind/chrome_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 4147592..2a16391 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -317,6 +317,9 @@ class ChromeTests:
def TestSync(self):
return self.SimpleTest("chrome", "sync_unit_tests")
+ def TestLinuxSandbox(self):
+ return self.SimpleTest("sandbox", "sandbox_linux_unittests")
+
def TestTestShell(self):
return self.SimpleTest("webkit", "test_shell_tests")
@@ -526,6 +529,7 @@ class ChromeTests:
"reliability": TestReliability, "reliability_tests": TestReliability,
"remoting": TestRemoting, "remoting_unittests": TestRemoting,
"safe_browsing": TestSafeBrowsing, "safe_browsing_tests": TestSafeBrowsing,
+ "sandbox": TestLinuxSandbox, "sandbox_linux_unittests": TestLinuxSandbox,
"sql": TestSql, "sql_unittests": TestSql,
"sync": TestSync, "sync_unit_tests": TestSync,
"sync_integration_tests": TestSyncIntegration,