From eddc485a8f506e76313ab04bd2dfa0cbce1ac372 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 13 Jul 2014 13:28:18 +0000 Subject: [PATCH] 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 --- tools/bugpoint/ToolRunner.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) 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 ? -- 2.34.1