From: Jonas Devlieghere Date: Sat, 25 Mar 2023 00:31:39 +0000 (-0700) Subject: [lldb] Remove errant call to SBReproducer.SetWorkingDirectory X-Git-Tag: upstream/17.0.6~13688 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0016f476ab1f9013d336491924495ec01f43a045;p=platform%2Fupstream%2Fllvm.git [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. --- diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index e2c0761..31539f6 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -560,7 +560,6 @@ class Base(unittest2.TestCase): 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()