[Lldb-commits] [lldb] r325702 - Fix remote tests broken by r325690

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 21 09:55:22 PST 2018


Author: labath
Date: Wed Feb 21 09:55:22 2018
New Revision: 325702

URL: http://llvm.org/viewvc/llvm-project?rev=325702&view=rev
Log:
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.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/types/AbstractBase.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/types/AbstractBase.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/types/AbstractBase.py?rev=325702&r1=325701&r2=325702&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/types/AbstractBase.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/types/AbstractBase.py Wed Feb 21 09:55:22 2018
@@ -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))




More information about the lldb-commits mailing list