[Lldb-commits] [lldb] 0016f47 - [lldb] Remove errant call to SBReproducer.SetWorkingDirectory

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 24 17:33:06 PDT 2023


Author: Jonas Devlieghere
Date: 2023-03-24T17:32:58-07:00
New Revision: 0016f476ab1f9013d336491924495ec01f43a045

URL: https://github.com/llvm/llvm-project/commit/0016f476ab1f9013d336491924495ec01f43a045
DIFF: https://github.com/llvm/llvm-project/commit/0016f476ab1f9013d336491924495ec01f43a045.diff

LOG: [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.

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/lldbtest.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index e2c076132fc63..31539f6a768bd 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -560,7 +560,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()


        


More information about the lldb-commits mailing list