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