Skip TestCallStopAndContinue and TestCallThatRestarts on Darwin.
authorTodd Fiala <todd.fiala@gmail.com>
Wed, 9 Jul 2014 22:03:30 +0000 (22:03 +0000)
committerTodd Fiala <todd.fiala@gmail.com>
Wed, 9 Jul 2014 22:03:30 +0000 (22:03 +0000)
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
lldb/test/expression_command/call-restarts/TestCallThatRestarts.py

index 3398c94..b00778e 100644 (file)
@@ -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()
index 8749738..6cc98ee 100644 (file)
@@ -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()