[Lldb-commits] [lldb] 76c8a01 - [lldb] [test] Skip vCont tests on Windows
Michał Górny via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 17 11:23:19 PDT 2021
Author: Michał Górny
Date: 2021-03-17T19:22:58+01:00
New Revision: 76c8a016a1b5003447c1f875d857660e74343942
URL: https://github.com/llvm/llvm-project/commit/76c8a016a1b5003447c1f875d857660e74343942
DIFF: https://github.com/llvm/llvm-project/commit/76c8a016a1b5003447c1f875d857660e74343942.diff
LOG: [lldb] [test] Skip vCont tests on Windows
Added:
Modified:
lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py b/lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py
index 9243f71e8650..d33a9699f3b9 100644
--- a/lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py
+++ b/lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py
@@ -49,6 +49,7 @@ def send_and_check_signal(self, vCont_data, threads):
for x in range(1, len(threads)+1))
self.assertEqual(tids, sorted(threads))
+ @skipIfWindows
@expectedFailureNetBSD
def test_signal_process_without_tid(self):
self.build()
@@ -71,6 +72,7 @@ def test_signal_one_thread(self):
"C{0:x}:{1:x};c".format(lldbutil.get_signal_number('SIGUSR1')),
threads[:1])
+ @skipIfWindows
@expectedFailureNetBSD
def test_signal_all_threads(self):
self.build()
More information about the lldb-commits
mailing list