ENH: Remove debug
This commit is contained in:
parent
821dc7b306
commit
6101b67610
|
@ -724,7 +724,6 @@ void cmCTestBuildHandler::ProcessBuffer(const char* data, int length,
|
|||
size_t& tick, size_t tick_len, std::ofstream& ofs,
|
||||
t_BuildProcessingQueueType* queue)
|
||||
{
|
||||
#undef cerr
|
||||
const std::string::size_type tick_line_len = 50;
|
||||
const char* ptr;
|
||||
for ( ptr = data; ptr < data+length; ptr ++ )
|
||||
|
|
|
@ -1655,7 +1655,7 @@ bool cmCTestTestHandler::SetTestsProperties(
|
|||
bool cmCTestTestHandler::AddTest(const std::vector<std::string>& args)
|
||||
{
|
||||
const std::string& testname = args[0];
|
||||
cmCTestLog(this->CTest, ERROR_MESSAGE, "Add test: " << args[0] << std::endl);
|
||||
cmCTestLog(this->CTest, DEBUG, "Add test: " << args[0] << std::endl);
|
||||
if (this->UseExcludeRegExpFlag &&
|
||||
this->UseExcludeRegExpFirst &&
|
||||
this->ExcludeTestsRegularExpression.find(testname.c_str()))
|
||||
|
@ -1707,7 +1707,7 @@ bool cmCTestTestHandler::AddTest(const std::vector<std::string>& args)
|
|||
test.Name = testname;
|
||||
test.Args = args;
|
||||
test.Directory = cmSystemTools::GetCurrentWorkingDirectory();
|
||||
cmCTestLog(this->CTest, ERROR_MESSAGE, "Set test directory: " << test.Directory << std::endl);
|
||||
cmCTestLog(this->CTest, DEBUG, "Set test directory: " << test.Directory << std::endl);
|
||||
|
||||
test.IsInBasedOnREOptions = true;
|
||||
test.WillFail = false;
|
||||
|
|
Loading…
Reference in New Issue