From 80c04c664a2a1900c5fdbf88c2c11e3f4f4ebf71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 21 Jun 2022 20:08:06 +0200 Subject: [PATCH] [lldb] [llgs] Attempt to fix LLGS tests on Windows Sponsored by: The FreeBSD Foundation --- lldb/test/API/tools/lldb-server/TestNonStop.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lldb/test/API/tools/lldb-server/TestNonStop.py b/lldb/test/API/tools/lldb-server/TestNonStop.py index f2647995a778..2317d7061112 100644 --- a/lldb/test/API/tools/lldb-server/TestNonStop.py +++ b/lldb/test/API/tools/lldb-server/TestNonStop.py @@ -1,3 +1,4 @@ +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * import gdbremote_testcase @@ -7,6 +8,7 @@ class LldbGdbServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): mydir = TestBase.compute_mydir(__file__) + @skipIfWindows # no SIGSEGV support def test_run(self): self.build() self.set_inferior_startup_launch() @@ -127,7 +129,7 @@ class LldbGdbServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): "read packet: $vCtrlC#00", "send packet: $OK#00", {"direction": "send", - "regex": r"^%Stop:T13", + "regex": r"^%Stop:T", }, ], True) self.expect_gdbremote_sequence() @@ -147,6 +149,7 @@ class LldbGdbServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): ], True) self.expect_gdbremote_sequence() + @skipIfWindows # no clue, the result makes zero sense def test_exit_query(self): self.build() self.set_inferior_startup_launch()