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

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

Issue 11236025: Test that debug stub works with browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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
« no previous file with comments | « chrome/browser/nacl_host/test/debug_stub_browser_tests.py ('k') | chrome/browser/nacl_host/test/gdb_rsp.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc
===================================================================
--- chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc (revision 0)
+++ chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc (revision 0)
@@ -0,0 +1,65 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/command_line.h"
+#include "base/path_service.h"
+#include "base/process_util.h"
+#include "base/string_number_conversions.h"
+#include "chrome/browser/nacl_host/nacl_browser.h"
+#include "chrome/common/chrome_switches.h"
+#include "chrome/test/ppapi/ppapi_test.h"
+#include "content/public/test/test_browser_thread.h"
+#include "content/public/test/test_utils.h"
+
+class NaClGdbDebugStubTest : public PPAPINaClNewlibTest {
+ public:
+ NaClGdbDebugStubTest() {
+ }
+
+ void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
+
+ void StartTestScript(base::ProcessHandle* test_process,
+ std::string test_name, int debug_stub_port);
+
+};
+
+void NaClGdbDebugStubTest::SetUpCommandLine(CommandLine* command_line) {
+ PPAPINaClNewlibTest::SetUpCommandLine(command_line);
+ command_line->AppendSwitch(switches::kEnableNaClDebug);
+}
+
+void NaClGdbDebugStubTest::StartTestScript(base::ProcessHandle* test_process,
+ std::string test_name,
+ int debug_stub_port) {
+ // We call python script to reuse GDB RSP protocol implementation.
+ CommandLine cmd(FilePath(FILE_PATH_LITERAL("python")));
+ FilePath script;
+ PathService::Get(base::DIR_SOURCE_ROOT, &script);
+ script = script.AppendASCII(
+ "chrome/browser/nacl_host/test/debug_stub_browser_tests.py");
+ cmd.AppendArgPath(script);
+ cmd.AppendArg(base::IntToString(debug_stub_port));
+ cmd.AppendArg(test_name);
+ LOG(INFO) << cmd.GetCommandLineString();
+ base::LaunchProcess(cmd, base::LaunchOptions(), test_process);
+}
+
+// NaCl tests are disabled under ASAN because of qualification test.
+#if defined(ADDRESS_SANITIZER)
+#define MAYBE_Empty DISABLED_Empty
+#else
+#define MAYBE_Empty Empty
+#endif
+
+IN_PROC_BROWSER_TEST_F(NaClGdbDebugStubTest, MAYBE_Empty) {
+ base::ProcessHandle test_script;
+ NaClBrowser::GetInstance()->SetGdbDebugStubPortListener(
+ base::Bind(&NaClGdbDebugStubTest::StartTestScript,
+ base::Unretained(this), &test_script, "continue"));
+ RunTestViaHTTP("Empty");
+ NaClBrowser::GetInstance()->ClearGdbDebugStubPortListener();
+ int exit_code;
+ base::WaitForExitCode(test_script, &exit_code);
+ EXPECT_EQ(0, exit_code);
+}
« no previous file with comments | « chrome/browser/nacl_host/test/debug_stub_browser_tests.py ('k') | chrome/browser/nacl_host/test/gdb_rsp.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698