From 8a4ee50e589f6e0787f8cb69812cd4a5d360177a Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Wed, 9 Jul 2014 22:03:30 +0000 Subject: [PATCH] Skip TestCallStopAndContinue and TestCallThatRestarts on Darwin. These are failing intermittently. See http://llvm.org/bugs/show_bug.cgi?id=19246 for TestCallThatRestarts. Also applies to Linux. See http://llvm.org/bugs/show_bug.cgi?id=20274 for TestCallStopAndContinue. llvm-svn: 212660 --- lldb/test/expression_command/call-function/TestCallStopAndContinue.py | 2 ++ lldb/test/expression_command/call-restarts/TestCallThatRestarts.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py index 3398c94..b00778e 100644 --- a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py +++ b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py @@ -22,12 +22,14 @@ class ExprCommandCallStopContinueTestCase(TestBase): @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @dsym_test + @skipIfDarwin # see llvm.org/pr20274 - intermittent failure on MacOSX def test_with_dsym(self): """Test gathering result from interrupted function call.""" self.buildDsym() self.call_function() @dwarf_test + @skipIfDarwin # see llvm.org/pr20274 - intermittent failure on MacOSX def test_with_dwarf(self): """Test gathering result from interrupted function call.""" self.buildDwarf() diff --git a/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py b/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py index 8749738..6cc98ee 100644 --- a/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py +++ b/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py @@ -21,6 +21,7 @@ class ExprCommandThatRestartsTestCase(TestBase): @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @dsym_test + @skipIfDarwin # llvm.org/pr19246: intermittent failure def test_with_dsym(self): """Test calling std::String member function.""" self.buildDsym() @@ -28,6 +29,7 @@ class ExprCommandThatRestartsTestCase(TestBase): @dwarf_test @skipIfLinux # llvm.org/pr19246: intermittent failure + @skipIfDarwin # llvm.org/pr19246: intermittent failure def test_with_dwarf(self): """Test calling std::String member function.""" self.buildDwarf() -- 2.7.4