| 388 | } |
| 389 | |
| 390 | void cmCTest::Initialize(std::string const& binary_dir) |
| 391 | { |
| 392 | this->Impl->BuildID = ""; |
| 393 | for (Part p = PartStart; p != PartCount; p = static_cast<Part>(p + 1)) { |
| 394 | this->Impl->Parts[p].SubmitFiles.clear(); |
| 395 | } |
| 396 | |
| 397 | if (!this->Impl->InteractiveDebugMode) { |
| 398 | this->BlockTestErrorDiagnostics(); |
| 399 | } else { |
| 400 | cmSystemTools::PutEnv("CTEST_INTERACTIVE_DEBUG_MODE=1"); |
| 401 | } |
| 402 | |
| 403 | this->Impl->BinaryDir = binary_dir; |
| 404 | cmSystemTools::ConvertToUnixSlashes(this->Impl->BinaryDir); |
| 405 | } |
| 406 | |
| 407 | bool cmCTest::CreateNewTag(bool quiet) |
| 408 | { |
no test coverage detected