diff options
Diffstat (limited to 'lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py')
-rw-r--r-- | lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py b/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py index 122ff94f5b0..bb81d6d0d35 100644 --- a/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py +++ b/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py @@ -44,7 +44,7 @@ class CPPBreakpointTestCase(TestBase): self.assertTrue (exception_bkpt, "Made an exception breakpoint") # Now run, and make sure we hit our breakpoint: - process = target.LaunchSimple (None, None, os.getcwd()) + process = target.LaunchSimple (None, None, self.get_process_working_directory()) self.assertTrue (process, "Got a valid process") stopped_threads = [] |