diff options
author | Greg Clayton <gclayton@apple.com> | 2013-12-13 19:18:59 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-12-13 19:18:59 +0000 |
commit | c694751a06f2b61586b24798f84f7d88452dd3b5 (patch) | |
tree | fe24cc09ee16ef13e2c5c607df20401b9091a01a /lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | |
parent | 8e9026eee2263274d6d67de0065e759dab9583dc (diff) | |
download | bcm5719-llvm-c694751a06f2b61586b24798f84f7d88452dd3b5.tar.gz bcm5719-llvm-c694751a06f2b61586b24798f84f7d88452dd3b5.zip |
Correctly set the working directory when launching processes for both local and remote targets.
llvm-svn: 197266
Diffstat (limited to 'lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py')
-rw-r--r-- | lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py index f79e99d4766..d57cc7e0b38 100644 --- a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py +++ b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py @@ -133,7 +133,7 @@ class CrashingRecursiveInferiorTestCase(TestBase): # Now launch the process, and do not stop at entry point. # Both argv and envp are null. - process = target.LaunchSimple(None, None, os.getcwd()) + process = target.LaunchSimple (None, None, self.get_process_working_directory()) if process.GetState() != lldb.eStateStopped: self.fail("Process should be in the 'stopped' state, " |