[Lldb-commits] [lldb] r212488 - Marked TestLongjmp.py tests XFAIL for Linux.

Todd Fiala todd.fiala at gmail.com
Mon Jul 7 14:07:42 PDT 2014


Author: tfiala
Date: Mon Jul  7 16:07:41 2014
New Revision: 212488

URL: http://llvm.org/viewvc/llvm-project?rev=212488&view=rev
Log:
Marked TestLongjmp.py tests XFAIL for Linux.

See http://llvm.org/bugs/show_bug.cgi?id=20231

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=212488&r1=212487&r2=212488&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/longjmp/TestLongjmp.py (original)
+++ lldb/trunk/test/functionalities/longjmp/TestLongjmp.py Mon Jul  7 16:07:41 2014
@@ -17,6 +17,7 @@ class LongjmpTestCase(TestBase):
 
     @skipIfDarwin # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
     @skipIfFreeBSD # llvm.org/pr17214
+    @expectedFailureLinux("llvm.org/pr20231")
     def test_step_out(self):
         """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out."""
         self.buildDefault()
@@ -24,6 +25,7 @@ class LongjmpTestCase(TestBase):
 
     @skipIfDarwin # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
     @skipIfFreeBSD # llvm.org/pr17214
+    @expectedFailureLinux("llvm.org/pr20231")
     def test_step_over(self):
         """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-over a longjmp."""
         self.buildDefault()
@@ -31,6 +33,7 @@ class LongjmpTestCase(TestBase):
 
     @skipIfDarwin # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
     @skipIfFreeBSD # llvm.org/pr17214
+    @expectedFailureLinux("llvm.org/pr20231")
     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