Index: lldb/trunk/test/settings/quoting/TestQuoting.py =================================================================== --- lldb/trunk/test/settings/quoting/TestQuoting.py +++ lldb/trunk/test/settings/quoting/TestQuoting.py @@ -68,6 +68,11 @@ self.runCmd("process launch -o stdout.txt -- " + args_in) + if lldb.remote_platform: + src_file_spec = lldb.SBFileSpec('stdout.txt', False) + dst_file_spec = lldb.SBFileSpec('stdout.txt', True) + lldb.remote_platform.Get(src_file_spec, dst_file_spec); + with open('stdout.txt', 'r') as f: output = f.read()