[Lldb-commits] [lldb] [lldb] Fixed the TestDAP_repl_mode_detection test in case of a remote target (PR #93165)
Dmitry Vasilyev via lldb-commits
lldb-commits at lists.llvm.org
Thu May 23 03:22:22 PDT 2024
https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/93165
This test is based on dap_server which runs locally. This test failed in case of Windows host and Linux target.
>From 2243749477714852ada7a00bb849514283655464 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Thu, 23 May 2024 14:21:23 +0400
Subject: [PATCH] [lldb] Fixed the TestDAP_repl_mode_detection test in case of
a remote target
This test is based on dap_server which runs locally. This test failed in case of Windows host and Linux target.
---
.../API/tools/lldb-dap/repl-mode/TestDAP_repl_mode_detection.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/test/API/tools/lldb-dap/repl-mode/TestDAP_repl_mode_detection.py b/lldb/test/API/tools/lldb-dap/repl-mode/TestDAP_repl_mode_detection.py
index 7c77fc8541b93..705ae13e349dc 100644
--- a/lldb/test/API/tools/lldb-dap/repl-mode/TestDAP_repl_mode_detection.py
+++ b/lldb/test/API/tools/lldb-dap/repl-mode/TestDAP_repl_mode_detection.py
@@ -18,6 +18,7 @@ def assertEvaluate(self, expression, regex):
regex,
)
+ @skipIfRemote
def test_completions(self):
program = self.getBuildArtifact("a.out")
self.build_and_launch(program)
More information about the lldb-commits
mailing list