summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2018-02-21 17:55:22 +0000
committerPavel Labath <labath@google.com>2018-02-21 17:55:22 +0000
commit44499631a886637412a521802682eecee5927394 (patch)
tree65c8f9af1a24460b250031caee6c7b98ce8b278a /lldb/packages/Python/lldbsuite
parent9391d98e7b26434b5e6bf05167497c2fde285439 (diff)
downloadbcm5719-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.py2
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))
OpenPOWER on IntegriCloud