[Lldb-commits] [lldb] r212660 - Skip TestCallStopAndContinue and TestCallThatRestarts on Darwin.
Todd Fiala
todd.fiala at gmail.com
Wed Jul 9 15:03:30 PDT 2014
Author: tfiala
Date: Wed Jul 9 17:03:30 2014
New Revision: 212660
URL: http://llvm.org/viewvc/llvm-project?rev=212660&view=rev
Log:
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.
Modified:
lldb/trunk/test/expression_command/call-function/TestCallStopAndContinue.py
lldb/trunk/test/expression_command/call-restarts/TestCallThatRestarts.py
Modified: lldb/trunk/test/expression_command/call-function/TestCallStopAndContinue.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/call-function/TestCallStopAndContinue.py?rev=212660&r1=212659&r2=212660&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/call-function/TestCallStopAndContinue.py (original)
+++ lldb/trunk/test/expression_command/call-function/TestCallStopAndContinue.py Wed Jul 9 17:03:30 2014
@@ -22,12 +22,14 @@ class ExprCommandCallStopContinueTestCas
@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()
Modified: lldb/trunk/test/expression_command/call-restarts/TestCallThatRestarts.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/call-restarts/TestCallThatRestarts.py?rev=212660&r1=212659&r2=212660&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/call-restarts/TestCallThatRestarts.py (original)
+++ lldb/trunk/test/expression_command/call-restarts/TestCallThatRestarts.py Wed Jul 9 17:03:30 2014
@@ -21,6 +21,7 @@ class ExprCommandThatRestartsTestCase(Te
@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(Te
@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()
More information about the lldb-commits
mailing list