emaste requested changes to this revision. emaste added a comment. This revision now requires changes to proceed.
This test passes even without the change in https://reviews.llvm.org/D32271, presumably because `exe = os.path.join(os.getcwd(), 'newdir/proc_attach')` is providing us with an absolute path for `argv[0]`. With a change like that below the test passes with https://reviews.llvm.org/D32271 and fails without it: os.chdir('newdir') # Spawn a new process popen = self.spawnSubprocess('./proc_attach') os.chdir('..') https://reviews.llvm.org/D32522 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits