From: NAKAMURA Takumi Date: Sun, 13 Jul 2014 13:28:18 +0000 (+0000) Subject: bugpoint/ToolRunner.cpp: ProcessFailure(): Close ErrorFD immediately, or it couldn... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=eddc485a8f506e76313ab04bd2dfa0cbce1ac372;p=oota-llvm.git bugpoint/ToolRunner.cpp: ProcessFailure(): Close ErrorFD immediately, or it couldn't be reopened on Win32. FIXME: We may have an option in openFileForWrite(), not to use ResultFD but to close it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212902 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp index 4a2401b530f..a28b2856f1e 100644 --- a/tools/bugpoint/ToolRunner.cpp +++ b/tools/bugpoint/ToolRunner.cpp @@ -148,6 +148,14 @@ static std::string ProcessFailure(StringRef ProgPath, const char** Args, errs() << "Error making unique filename: " << EC.message() << "\n"; exit(1); } + +#ifdef _WIN32 + // Close ErrorFD immediately, or it couldn't be reopened on Win32. + // FIXME: We may have an option in openFileForWrite(), not to use ResultFD + // but to close it. + delete new raw_fd_ostream(ErrorFD, true); +#endif + RunProgramWithTimeout(ProgPath, Args, "", ErrorFilename.str(), ErrorFilename.str(), Timeout, MemoryLimit); // FIXME: check return code ?