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))


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to