[Lldb-commits] [lldb] [lldb][Windows] Disable the TestGdbRemoteLibrariesSvr4Support test for Windows host (PR #92341)
via lldb-commits
lldb-commits at lists.llvm.org
Wed May 15 20:39:57 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Dmitry Vasilyev (slydiman)
<details>
<summary>Changes</summary>
Windows does not allow quotes in file names. So it is impossible to build `libsvr4lib_b".so` on Windows.
---
Full diff: https://github.com/llvm/llvm-project/pull/92341.diff
1 Files Affected:
- (modified) lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py (+2)
``````````diff
diff --git a/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py b/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
index 846adade34402..02c9d318525fb 100644
--- a/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
+++ b/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
@@ -4,6 +4,8 @@
from lldbsuite.test.lldbtest import *
+# Windows does not allow quotes in file names.
+ at skipIf(hostoslist=["windows"])
class TestGdbRemoteLibrariesSvr4Support(gdbremote_testcase.GdbRemoteTestCaseBase):
FEATURE_NAME = "qXfer:libraries-svr4:read"
``````````
</details>
https://github.com/llvm/llvm-project/pull/92341
More information about the lldb-commits
mailing list