diff options
author | Georgiy Samoylov <g.samoylov@syntacore.com> | 2025-03-24 11:33:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-24 09:33:08 +0100 |
commit | ec9546d1699457169da5d6456d4080c52f6972f9 (patch) | |
tree | 824cce5961883f8db9e99029049c2667c0cddb61 /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | c457c8895181aff3c02e9ffdb7e05f58957aa151 (diff) | |
download | llvm-ec9546d1699457169da5d6456d4080c52f6972f9.zip llvm-ec9546d1699457169da5d6456d4080c52f6972f9.tar.gz llvm-ec9546d1699457169da5d6456d4080c52f6972f9.tar.bz2 |
[lldb] Fix TestGdbRemoteForkNonStop.py test (#131293)
During lldb testing on remote targets TestGdbRemoteForkNonStop.py
freezes because in this test we try to create file on remote machine
using absolute file path from local machine. This patch fixes this error
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 570c36b5f..f117aea 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -2024,7 +2024,7 @@ class TestBase(Base, metaclass=LLDBTestCaseFactory): """Get the working directory that should be used when launching processes for local or remote processes.""" if lldb.remote_platform: # Remote tests set the platform working directory up in - # TestBase.setUp() + # Base.setUp() return lldb.remote_platform.GetWorkingDirectory() else: # local tests change directory into each test subdirectory |