aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-08-01 20:03:36 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-08-01 20:03:36 +0000
commit0d23b9fa316da005db4d5591bfa616a014ae1a16 (patch)
tree5c4954457226f9eaa2abad943ffa972702b2787d
parent23bb947c115986ebad812bc7c04805118feb318f (diff)
downloadlldb-0d23b9fa316da005db4d5591bfa616a014ae1a16.tar.gz
Disable test on Mac OS X due to llvm.org/pr16769
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187603 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/functionalities/longjmp/TestLongjmp.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functionalities/longjmp/TestLongjmp.py b/test/functionalities/longjmp/TestLongjmp.py
index 763be0969..74a861e88 100644
--- a/test/functionalities/longjmp/TestLongjmp.py
+++ b/test/functionalities/longjmp/TestLongjmp.py
@@ -15,16 +15,19 @@ class LongjmpTestCase(TestBase):
def setUp(self):
TestBase.setUp(self)
+ @skipIfDarwin # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
def test_step_out(self):
"""Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out."""
self.buildDefault()
self.step_out()
+ @skipIfDarwin # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
def test_step_over(self):
"""Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-over a longjmp."""
self.buildDefault()
self.step_over()
+ @skipIfDarwin # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
def test_step_back_out(self):
"""Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out after thread step-in."""
self.buildDefault()