| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/environment.h" | 6 #include "base/environment.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/process/kill.h" | 8 #include "base/process/kill.h" |
| 9 #include "base/process/launch.h" | 9 #include "base/process/launch.h" |
| 10 #include "base/process/process.h" | 10 #include "base/process/process.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "build/build_config.h" |
| 12 #include "chrome/common/chrome_paths.h" | 13 #include "chrome/common/chrome_paths.h" |
| 13 #include "chrome/test/ppapi/ppapi_test.h" | 14 #include "chrome/test/ppapi/ppapi_test.h" |
| 14 #include "components/nacl/browser/nacl_browser.h" | 15 #include "components/nacl/browser/nacl_browser.h" |
| 15 #include "components/nacl/common/nacl_switches.h" | 16 #include "components/nacl/common/nacl_switches.h" |
| 16 #include "content/public/test/test_utils.h" | 17 #include "content/public/test/test_utils.h" |
| 17 | 18 |
| 18 class NaClGdbDebugStubTest : public PPAPINaClNewlibTest { | 19 class NaClGdbDebugStubTest : public PPAPINaClNewlibTest { |
| 19 public: | 20 public: |
| 20 NaClGdbDebugStubTest() { | 21 NaClGdbDebugStubTest() { |
| 21 } | 22 } |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #elif defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY) | 83 #elif defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY) |
| 83 // Timing out on ARM linux: http://crbug.com/238469 | 84 // Timing out on ARM linux: http://crbug.com/238469 |
| 84 # define MAYBE_Breakpoint DISABLED_Breakpoint | 85 # define MAYBE_Breakpoint DISABLED_Breakpoint |
| 85 #else | 86 #else |
| 86 # define MAYBE_Breakpoint Breakpoint | 87 # define MAYBE_Breakpoint Breakpoint |
| 87 #endif | 88 #endif |
| 88 | 89 |
| 89 IN_PROC_BROWSER_TEST_F(NaClGdbDebugStubTest, MAYBE_Breakpoint) { | 90 IN_PROC_BROWSER_TEST_F(NaClGdbDebugStubTest, MAYBE_Breakpoint) { |
| 90 RunDebugStubTest("Empty", "breakpoint"); | 91 RunDebugStubTest("Empty", "breakpoint"); |
| 91 } | 92 } |
| OLD | NEW |