summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_switches.cc
diff options
context:
space:
mode:
authorjvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 23:02:52 +0000
committerjvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 23:02:52 +0000
commit23acfc08defd8db4cd54d91e86593baf47b461ea (patch)
treefe9e80355421a03b7fab0bf372834144adf4bd21 /chrome/common/chrome_switches.cc
parent9d098779ae0342c1bf8db56d0bacbb57c3858215 (diff)
downloadchromium_src-23acfc08defd8db4cd54d91e86593baf47b461ea.zip
chromium_src-23acfc08defd8db4cd54d91e86593baf47b461ea.tar.gz
chromium_src-23acfc08defd8db4cd54d91e86593baf47b461ea.tar.bz2
Set up tests to exercise the chrome outersandbox from the nacl loader.
It is similar to the renderer sandbox tests in that the test code is separated into a DLL and only loaded based on commandline flags. Currently tests file open, process creation, and connect. This is currently not set up for Linux. To set it up for Linux, we need to be more careful about what tests are expected to pass, and will need to look into zygote process for how to get the test shared lib loaded. BUG=39409 TEST=none Review URL: http://codereview.chromium.org/1549046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52567 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r--chrome/common/chrome_switches.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index e527bc52..f0e6950 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -882,9 +882,12 @@ const char kSyncUseCacheInvalidation[] = "use-cache-invalidation";
// Pass the name of the current running automated test to Chrome.
const char kTestName[] = "test-name";
-// Runs the security test for the sandbox.
+// Runs the security test for the renderer sandbox.
const char kTestSandbox[] = "test-sandbox";
+// Runs the security test for the NaCl loader sandbox.
+const char kTestNaClSandbox[] = "test-nacl-sandbox";
+
// Pass the type of the current test harness ("browser" or "ui")
const char kTestType[] = "test-type";