From: Pavel Labath Date: Wed, 21 Feb 2018 17:55:22 +0000 (+0000) Subject: Fix remote tests broken by r325690 X-Git-Tag: llvmorg-7.0.0-rc1~12335 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=44499631a886637412a521802682eecee5927394;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py b/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py index bb32234..37ddfb7 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))