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
diff --git a/test/functionalities/longjmp/TestLongjmp.py b/test/functionalities/longjmp/TestLongjmp.py
index 763be09..74a861e 100644
--- a/test/functionalities/longjmp/TestLongjmp.py
+++ b/test/functionalities/longjmp/TestLongjmp.py
@@ -15,16 +15,19 @@
     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()