ENH: Remove debug

This commit is contained in:
Andy Cedilnik 2006-07-12 16:30:14 -04:00
parent 821dc7b306
commit 6101b67610
2 changed files with 2 additions and 3 deletions

View File

@ -724,7 +724,6 @@ void cmCTestBuildHandler::ProcessBuffer(const char* data, int length,
size_t& tick, size_t tick_len, std::ofstream& ofs, size_t& tick, size_t tick_len, std::ofstream& ofs,
t_BuildProcessingQueueType* queue) t_BuildProcessingQueueType* queue)
{ {
#undef cerr
const std::string::size_type tick_line_len = 50; const std::string::size_type tick_line_len = 50;
const char* ptr; const char* ptr;
for ( ptr = data; ptr < data+length; ptr ++ ) for ( ptr = data; ptr < data+length; ptr ++ )

View File

@ -1655,7 +1655,7 @@ bool cmCTestTestHandler::SetTestsProperties(
bool cmCTestTestHandler::AddTest(const std::vector<std::string>& args) bool cmCTestTestHandler::AddTest(const std::vector<std::string>& args)
{ {
const std::string& testname = args[0]; 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 && if (this->UseExcludeRegExpFlag &&
this->UseExcludeRegExpFirst && this->UseExcludeRegExpFirst &&
this->ExcludeTestsRegularExpression.find(testname.c_str())) this->ExcludeTestsRegularExpression.find(testname.c_str()))
@ -1707,7 +1707,7 @@ bool cmCTestTestHandler::AddTest(const std::vector<std::string>& args)
test.Name = testname; test.Name = testname;
test.Args = args; test.Args = args;
test.Directory = cmSystemTools::GetCurrentWorkingDirectory(); 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.IsInBasedOnREOptions = true;
test.WillFail = false; test.WillFail = false;