emaste added inline comments.
================ Comment at: packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py:44 + """Test attach by process id""" + os.mkdir(os.path.join(os.getcwd(),'newdir')) + self.buildProgram('main.cpp',os.path.join(os.getcwd(),'newdir','proc_attach')) ---------------- Perhaps ``` try: os.mkdir(os.path.join(os.getcwd(),'newdir')) except OSError, e: if e.errno != os.errno.EEXIST: raise ``` https://reviews.llvm.org/D32522 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits