1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-17 15:32:10 +08:00

cmCTest: Explicitly specify '.tmp' extension on in-progress log files

Do not depend on `cmGeneratedFileStream` to have this default.
This commit is contained in:
Brad King
2020-07-07 13:36:49 -04:00
parent 0d3a034725
commit 09ff1cb650

View File

@@ -841,6 +841,7 @@ bool cmCTest::OpenOutputFile(const std::string& path, const std::string& name,
} }
} }
std::string filename = testingDir + "/" + name; std::string filename = testingDir + "/" + name;
stream.SetTempExt("tmp");
stream.Open(filename); stream.Open(filename);
if (!stream) { if (!stream) {
cmCTestLog(this, ERROR_MESSAGE, cmCTestLog(this, ERROR_MESSAGE,