Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1944)

Unified Diff: chrome/browser/nacl_host/test/nacl_gdb_browsertest.cc

Issue 9950055: Enable --nacl-gdb flag on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: style nit Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/nacl_host/test/nacl_gdb_browsertest.cc
===================================================================
--- chrome/browser/nacl_host/test/nacl_gdb_browsertest.cc (revision 130109)
+++ chrome/browser/nacl_host/test/nacl_gdb_browsertest.cc (working copy)
@@ -42,10 +42,12 @@
// base::LaunchProcess doesn't support creating suspended processes. We need
// to either add suspended process support to base::LaunchProcess or use
// Win API.
+#if defined(OS_WIN)
if (base::win::OSInfo::GetInstance()->wow64_status() ==
base::win::OSInfo::WOW64_DISABLED) {
return;
}
+#endif
EXPECT_TRUE(file_util::CreateTemporaryFile(&mock_nacl_gdb_file));
env->SetVar("MOCK_NACL_GDB", mock_nacl_gdb_file.AsUTF8Unsafe());
RunTestViaHTTP("Empty");

Powered by Google App Engine
This is Rietveld 408576698