[Lldb-commits] [lldb] r246569 - XFAIL TestHelloWorld on Windows.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 1 11:24:49 PDT 2015


Author: zturner
Date: Tue Sep  1 13:24:49 2015
New Revision: 246569

URL: http://llvm.org/viewvc/llvm-project?rev=246569&view=rev
Log:
XFAIL TestHelloWorld on Windows.

https://llvm.org/pr24600

Modified:
    lldb/trunk/test/python_api/hello_world/TestHelloWorld.py

Modified: lldb/trunk/test/python_api/hello_world/TestHelloWorld.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/hello_world/TestHelloWorld.py?rev=246569&r1=246568&r2=246569&view=diff
==============================================================================
--- lldb/trunk/test/python_api/hello_world/TestHelloWorld.py (original)
+++ lldb/trunk/test/python_api/hello_world/TestHelloWorld.py Tue Sep  1 13:24:49 2015
@@ -49,6 +49,7 @@ class HelloWorldTestCase(TestBase):
     @python_api_test
     @dwarf_test
     @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly
+    @expectedFailureWindows("llvm.org/pr24600")
     def test_with_dwarf_and_attach_to_process_with_id_api(self):
         """Create target, spawn a process, and attach to it with process id.
 
@@ -74,6 +75,7 @@ class HelloWorldTestCase(TestBase):
     @python_api_test
     @dwarf_test
     @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly
+    @expectedFailureWindows("llvm.org/pr24600")
     def test_with_dwarf_and_attach_to_process_with_name_api(self):
         """Create target, spawn a process, and attach to it with process name.
 




More information about the lldb-commits mailing list