OSDN Git Service

bugpoint/ToolRunner.cpp: ProcessFailure(): Close ErrorFD immediately, or it couldn...
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 13 Jul 2014 13:28:18 +0000 (13:28 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 13 Jul 2014 13:28:18 +0000 (13:28 +0000)
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

index 4a2401b..a28b285 100644 (file)
@@ -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 ?