[Lldb-commits] [lldb] r187603 - Disable test on Mac OS X due to llvm.org/pr16769
Daniel Malea
daniel.malea at intel.com
Thu Aug 1 13:03:36 PDT 2013
Author: dmalea
Date: Thu Aug 1 15:03:36 2013
New Revision: 187603
URL: http://llvm.org/viewvc/llvm-project?rev=187603&view=rev
Log:
Disable test on Mac OS X due to llvm.org/pr16769
Modified:
lldb/trunk/test/functionalities/longjmp/TestLongjmp.py
Modified: lldb/trunk/test/functionalities/longjmp/TestLongjmp.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/longjmp/TestLongjmp.py?rev=187603&r1=187602&r2=187603&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/longjmp/TestLongjmp.py (original)
+++ lldb/trunk/test/functionalities/longjmp/TestLongjmp.py Thu Aug 1 15:03:36 2013
@@ -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()
More information about the lldb-commits
mailing list