From ec9546d1699457169da5d6456d4080c52f6972f9 Mon Sep 17 00:00:00 2001 From: Georgiy Samoylov Date: Mon, 24 Mar 2025 11:33:08 +0300 Subject: [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 --- lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py') 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 -- cgit v1.1