Author: ovyalov
Date: Wed Oct 28 13:36:11 2015
New Revision: 251542

URL: http://llvm.org/viewvc/llvm-project?rev=251542&view=rev
Log:
Mark TestHelloWorld and TestInferiorAssert.py as XFAIL due llvm.org/pr25338.


Modified:
    
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
    
lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py

Modified: 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py?rev=251542&r1=251541&r2=251542&view=diff
==============================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
 (original)
+++ 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
 Wed Oct 28 13:36:11 2015
@@ -13,6 +13,7 @@ class AssertingInferiorTestCase(TestBase
     mydir = TestBase.compute_mydir(__file__)
 
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for 
detecting assertion / abort on Windows")
+    @expectedFailurei386("llvm.org/pr25338")
     def test_inferior_asserting(self):
         """Test that lldb reliably catches the inferior asserting (command)."""
         self.build()
@@ -26,6 +27,7 @@ class AssertingInferiorTestCase(TestBase
         self.inferior_asserting_registers()
 
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for 
detecting assertion / abort on Windows")
+    @expectedFailurei386("llvm.org/pr25338")
     def test_inferior_asserting_disassemble(self):
         """Test that lldb reliably disassembles frames after asserting 
(command)."""
         self.build()
@@ -39,12 +41,14 @@ class AssertingInferiorTestCase(TestBase
         self.inferior_asserting_python()
 
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for 
detecting assertion / abort on Windows")
+    @expectedFailurei386("llvm.org/pr25338")
     def test_inferior_asserting_expr(self):
         """Test that the lldb expression interpreter can read from the 
inferior after asserting (command)."""
         self.build()
         self.inferior_asserting_expr()
 
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for 
detecting assertion / abort on Windows")
+    @expectedFailurei386("llvm.org/pr25338")
     def test_inferior_asserting_step(self):
         """Test that lldb functions correctly after stepping through a call to 
assert()."""
         self.build()

Modified: 
lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py?rev=251542&r1=251541&r2=251542&view=diff
==============================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
 (original)
+++ 
lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
 Wed Oct 28 13:36:11 2015
@@ -74,6 +74,7 @@ class HelloWorldTestCase(TestBase):
 
     @add_test_categories(['pyapi'])
     @expectedFailureWindows("llvm.org/pr24600")
+    @expectedFailurei386("llvm.org/pr25338")
     def test_with_attach_to_process_with_id_api(self):
         """Create target, spawn a process, and attach to it with process id."""
         self.build(dictionary=self.d)
@@ -102,6 +103,7 @@ class HelloWorldTestCase(TestBase):
 
     @add_test_categories(['pyapi'])
     @expectedFailureWindows("llvm.org/pr24600")
+    @expectedFailurei386("llvm.org/pr25338")
     def test_with_attach_to_process_with_name_api(self):
         """Create target, spawn a process, and attach to it with process 
name."""
         self.build(dictionary=self.d)


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to