Commit 941e4f20 authored by Scott Graham's avatar Scott Graham

Temporarily disable stack trace tests, pending investigation on XP bots

R=rmsousa@chromium.org
TBR=beaudoin, binjin, kaliamoorthi, noms, rmsousa
BUG=461160

Review URL: https://codereview.chromium.org/949953004

Cr-Commit-Position: refs/heads/master@{#317732}
parent 19b0f353
...@@ -31,7 +31,8 @@ TEST(Debugger, CrashAtBreakpoint) { ...@@ -31,7 +31,8 @@ TEST(Debugger, CrashAtBreakpoint) {
} }
#if defined(OS_WIN) #if defined(OS_WIN)
TEST(Debugger, DoesntExecuteBeyondBreakpoint) { // TODO(scottmg): http://crbug.com/461160
TEST(Debugger, DISABLED_DoesntExecuteBeyondBreakpoint) {
EXPECT_EXIT(CrashWithBreakDebugger(), EXPECT_EXIT(CrashWithBreakDebugger(),
::testing::ExitedWithCode(0x80000003), ""); ::testing::ExitedWithCode(0x80000003), "");
} }
......
...@@ -120,7 +120,8 @@ TEST_F(StackTraceTest, MAYBE_OutputToStream) { ...@@ -120,7 +120,8 @@ TEST_F(StackTraceTest, MAYBE_OutputToStream) {
} }
// The test is used for manual testing, e.g., to see the raw output. // The test is used for manual testing, e.g., to see the raw output.
TEST_F(StackTraceTest, DebugOutputToStream) { // TODO(scottmg): http://crbug.com/461160
TEST_F(StackTraceTest, DISABLED_DebugOutputToStream) {
StackTrace trace; StackTrace trace;
std::ostringstream os; std::ostringstream os;
trace.OutputToStream(&os); trace.OutputToStream(&os);
...@@ -128,7 +129,8 @@ TEST_F(StackTraceTest, DebugOutputToStream) { ...@@ -128,7 +129,8 @@ TEST_F(StackTraceTest, DebugOutputToStream) {
} }
// The test is used for manual testing, e.g., to see the raw output. // The test is used for manual testing, e.g., to see the raw output.
TEST_F(StackTraceTest, DebugPrintBacktrace) { // TODO(scottmg): http://crbug.com/461160
TEST_F(StackTraceTest, DISABLED_DebugPrintBacktrace) {
StackTrace().Print(); StackTrace().Print();
} }
#endif // !defined(__UCLIBC__) #endif // !defined(__UCLIBC__)
......
...@@ -240,7 +240,8 @@ MULTIPROCESS_TEST_MAIN(CrashingChildProcess) { ...@@ -240,7 +240,8 @@ MULTIPROCESS_TEST_MAIN(CrashingChildProcess) {
#else #else
#define MAYBE_GetTerminationStatusCrash GetTerminationStatusCrash #define MAYBE_GetTerminationStatusCrash GetTerminationStatusCrash
#endif #endif
TEST_F(ProcessUtilTest, MAYBE_GetTerminationStatusCrash) { // TODO(scottmg): http://crbug.com/461160
TEST_F(ProcessUtilTest, DISABLED_GetTerminationStatusCrash) {
const std::string signal_file = const std::string signal_file =
ProcessUtilTest::GetSignalFilePath(kSignalFileCrash); ProcessUtilTest::GetSignalFilePath(kSignalFileCrash);
remove(signal_file.c_str()); remove(signal_file.c_str());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment