summaryrefslogtreecommitdiffstats
path: root/base/test
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-15 19:51:20 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-15 19:51:20 +0000
commit54a323ea46e0756d9270fa8e003f31aff7f8336e (patch)
tree6ba969aa1f78fe3cf99ddae3f0ec7781b929afbd /base/test
parent4bb0952d7a0e79674e47bcc9792842ce4a5bb996 (diff)
downloadchromium_src-54a323ea46e0756d9270fa8e003f31aff7f8336e.zip
chromium_src-54a323ea46e0756d9270fa8e003f31aff7f8336e.tar.gz
chromium_src-54a323ea46e0756d9270fa8e003f31aff7f8336e.tar.bz2
seccomp: disable seccomp for RendererMainTest
This test *could* work, but it requires refactoring as outlined in the bug. BUG=59376 TEST=test works with seccomp enabled at compile-time Review URL: http://codereview.chromium.org/3797010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62775 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/test')
-rw-r--r--base/test/multiprocess_test.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/base/test/multiprocess_test.h b/base/test/multiprocess_test.h
index 5126abe..af7a180 100644
--- a/base/test/multiprocess_test.h
+++ b/base/test/multiprocess_test.h
@@ -63,7 +63,9 @@ class MultiProcessTest : public PlatformTest {
bool debug_on_start);
#endif
- CommandLine MakeCmdLine(const std::string& procname, bool debug_on_start);
+ // Set up the command line used to spawn the child process.
+ virtual CommandLine MakeCmdLine(const std::string& procname,
+ bool debug_on_start);
private:
#if defined(OS_WIN)
@@ -78,7 +80,7 @@ class MultiProcessTest : public PlatformTest {
bool debug_on_start);
#endif
- DISALLOW_COPY_AND_ASSIGN(MultiProcessTest);
+ DISALLOW_COPY_AND_ASSIGN(MultiProcessTest);
};
} // namespace base