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
This commit is contained in:
Todd Fiala 2014-07-09 22:03:30 +00:00
parent fb17762ee5
commit 8a4ee50e58
2 changed files with 4 additions and 0 deletions

View 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()

View 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()