diff options
author | Pavel Labath <labath@google.com> | 2018-02-21 17:55:22 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-02-21 17:55:22 +0000 |
commit | 44499631a886637412a521802682eecee5927394 (patch) | |
tree | 65c8f9af1a24460b250031caee6c7b98ce8b278a /lldb/packages/Python/lldbsuite | |
parent | 9391d98e7b26434b5e6bf05167497c2fde285439 (diff) | |
download | bcm5719-llvm-44499631a886637412a521802682eecee5927394.tar.gz bcm5719-llvm-44499631a886637412a521802682eecee5927394.zip |
Fix remote tests broken by r325690
The patch added an extra argument to the append_to_process_working_directory
function. I have somehow missed updating this test, and it did not show up
because the code was only run in remote mode.
llvm-svn: 325702
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/types/AbstractBase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py b/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py index bb322345d25..37ddfb756bb 100644 --- a/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py +++ b/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py @@ -95,7 +95,7 @@ class GenericTester(TestBase): if lldb.remote_platform: # process launch -o requires a path that is valid on the target self.assertIsNotNone(lldb.remote_platform.GetWorkingDirectory()) - remote_path = lldbutil.append_to_process_working_directory( + remote_path = lldbutil.append_to_process_working_directory(self, "lldb-stdout-redirect.txt") self.runCmd( 'process launch -- {remote}'.format(remote=remote_path)) |