From 4c1fadbb440c236d8a9a1796d015362821fd337d Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Thu, 1 Aug 2013 20:03:36 +0000 Subject: [PATCH] Disable test on Mac OS X due to llvm.org/pr16769 llvm-svn: 187603 --- lldb/test/functionalities/longjmp/TestLongjmp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lldb/test/functionalities/longjmp/TestLongjmp.py b/lldb/test/functionalities/longjmp/TestLongjmp.py index 763be09..74a861e 100644 --- a/lldb/test/functionalities/longjmp/TestLongjmp.py +++ b/lldb/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() -- 2.7.4