aboutsummaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorDmitry Vasilyev <dvassiliev@accesssoftek.com>2024-05-30 19:56:04 +0400
committerGitHub <noreply@github.com>2024-05-30 19:56:04 +0400
commitfacb767e5b78a024d70585b24254c769473b6b54 (patch)
tree2daf3d4a3b0a620ab6738b5dd544d95870ea5af1 /lldb
parent6147a7b5f9479a4163c07064a9c78c2d5fe40d27 (diff)
downloadllvm-facb767e5b78a024d70585b24254c769473b6b54.zip
llvm-facb767e5b78a024d70585b24254c769473b6b54.tar.gz
llvm-facb767e5b78a024d70585b24254c769473b6b54.tar.bz2
[lldb] Fixed the TestGdbRemoteLibrariesSvr4Support test running on a remote target (#93825)
The TestGdbRemoteLibrariesSvr4Support test failed in case of Linux x86_64 host and Linux Aarch64 target. Installing libraries to the remote target is not enough. This test actively uses self.getBuildDir() and os.path.realpath() which does not work in case of the remote target. So, disable this test for remote target now.
Diffstat (limited to 'lldb')
-rw-r--r--lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py1
1 files changed, 1 insertions, 0 deletions
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 02c9d31..76173a0 100644
--- a/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
+++ b/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
@@ -6,6 +6,7 @@ from lldbsuite.test.lldbtest import *
# Windows does not allow quotes in file names.
@skipIf(hostoslist=["windows"])
+@skipIfRemote
class TestGdbRemoteLibrariesSvr4Support(gdbremote_testcase.GdbRemoteTestCaseBase):
FEATURE_NAME = "qXfer:libraries-svr4:read"