[Lldb-commits] [lldb] 5a6f1f3 - [lldb] [test] Skip new NonStop tests on Windows
Michał Górny via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 15 07:02:54 PDT 2022
Author: Michał Górny
Date: 2022-07-15T16:02:47+02:00
New Revision: 5a6f1f3271720fffd9f82827f593737e1af7f833
URL: https://github.com/llvm/llvm-project/commit/5a6f1f3271720fffd9f82827f593737e1af7f833
DIFF: https://github.com/llvm/llvm-project/commit/5a6f1f3271720fffd9f82827f593737e1af7f833.diff
LOG: [lldb] [test] Skip new NonStop tests on Windows
Added:
Modified:
lldb/test/API/tools/lldb-server/TestNonStop.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/TestNonStop.py b/lldb/test/API/tools/lldb-server/TestNonStop.py
index 30dec7f115e1..e4367f6ec9ff 100644
--- a/lldb/test/API/tools/lldb-server/TestNonStop.py
+++ b/lldb/test/API/tools/lldb-server/TestNonStop.py
@@ -196,6 +196,7 @@ def test_multiple_c(self):
def test_multiple_s(self):
self.multiple_resume_test("s")
+ @skipIfWindows
@add_test_categories(["llgs"])
def test_multiple_vCont(self):
self.build()
@@ -286,10 +287,12 @@ def vCont_then_partial_stop_test(self, run_both):
], True)
self.expect_gdbremote_sequence()
+ @skipIfWindows
@add_test_categories(["llgs"])
def test_vCont_then_partial_stop(self):
self.vCont_then_partial_stop_test(False)
+ @skipIfWindows
@add_test_categories(["llgs"])
def test_vCont_then_partial_stop_run_both(self):
self.vCont_then_partial_stop_test(True)
More information about the lldb-commits
mailing list