[Lldb-commits] [lldb] c62ef12 - [lldb] [test] Mark more lldb-server tests xfail on Windows

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 30 09:49:10 PDT 2021


Author: Michał Górny
Date: 2021-03-30T18:49:04+02:00
New Revision: c62ef12079bcc7ce72040dddaae13408b120d995

URL: https://github.com/llvm/llvm-project/commit/c62ef12079bcc7ce72040dddaae13408b120d995
DIFF: https://github.com/llvm/llvm-project/commit/c62ef12079bcc7ce72040dddaae13408b120d995.diff

LOG: [lldb] [test] Mark more lldb-server tests xfail on Windows

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-server/TestLldbGdbServer.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
index 6677cfff8483..0764e3d6c75a 100644
--- a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
+++ b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
@@ -426,16 +426,19 @@ def Hg_fails_on_pid(self, pass_pid):
 
         self.expect_gdbremote_sequence()
 
+    @expectedFailureAll(oslist=["windows"])
     def test_Hg_fails_on_another_pid(self):
         self.build()
         self.set_inferior_startup_launch()
         self.Hg_fails_on_pid(1)
 
+    @expectedFailureAll(oslist=["windows"])
     def test_Hg_fails_on_zero_pid(self):
         self.build()
         self.set_inferior_startup_launch()
         self.Hg_fails_on_pid(0)
 
+    @expectedFailureAll(oslist=["windows"])
     def test_Hg_fails_on_minus_one_pid(self):
         self.build()
         self.set_inferior_startup_launch()


        


More information about the lldb-commits mailing list