From 65ba74295a19722777f6a188da3b04feca703848 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Fri, 24 Mar 2023 17:31:39 -0700 Subject: [PATCH] [lldb] Remove errant call to SBReproducer.SetWorkingDirectory The old reproducer functionality has been removed. Remove this call as it's now just a NO-OP. (cherry picked from commit 0016f476ab1f9013d336491924495ec01f43a045) --- lldb/packages/Python/lldbsuite/test/lldbtest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 92bd52083296e..bf9cc1073959c 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -553,7 +553,6 @@ def setUpClass(cls): if traceAlways: print("Change dir to:", full_dir, file=sys.stderr) os.chdir(full_dir) - lldb.SBReproducer.SetWorkingDirectory(full_dir) # Set platform context. cls.platformContext = lldbplatformutil.createPlatformContext()