[llvm-branch-commits] [lldb] a8f6f4e - [lldb] [test] Restore Windows-skip on 'process connect' tests
Michał Górny via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Nov 23 05:31:42 PST 2020
Author: Michał Górny
Date: 2020-11-23T14:27:32+01:00
New Revision: a8f6f4e8733cd601246ddc3e391cd82236231846
URL: https://github.com/llvm/llvm-project/commit/a8f6f4e8733cd601246ddc3e391cd82236231846
DIFF: https://github.com/llvm/llvm-project/commit/a8f6f4e8733cd601246ddc3e391cd82236231846.diff
LOG: [lldb] [test] Restore Windows-skip on 'process connect' tests
Added:
Modified:
lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
lldb/test/Shell/Commands/command-process-connect.test
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
index e9152f02a15e..c2d06ad5d67e 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
@@ -33,6 +33,7 @@ def test_gdb_remote_async(self):
finally:
self.dbg.GetSelectedPlatform().DisconnectRemote()
+ @skipIfWindows
def test_process_connect_sync(self):
"""Test the gdb-remote command in synchronous mode"""
try:
@@ -43,6 +44,7 @@ def test_process_connect_sync(self):
finally:
self.dbg.GetSelectedPlatform().DisconnectRemote()
+ @skipIfWindows
@skipIfReproducer # Reproducer don't support async.
def test_process_connect_async(self):
"""Test the gdb-remote command in asynchronous mode"""
diff --git a/lldb/test/Shell/Commands/command-process-connect.test b/lldb/test/Shell/Commands/command-process-connect.test
index c4761360d541..30782243d4ed 100644
--- a/lldb/test/Shell/Commands/command-process-connect.test
+++ b/lldb/test/Shell/Commands/command-process-connect.test
@@ -1,3 +1,5 @@
+# UNSUPPORTED: system-windows
+
# Synchronous
# RUN: %lldb -o 'platform select remote-gdb-server' -o 'process connect connect://localhost:4321' 2>&1 | FileCheck %s
More information about the llvm-branch-commits
mailing list