diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-23 20:00:46 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-23 20:00:46 (GMT) |
commit | 047c7b5af487a4752a0ee39c0fc841e4102d7756 (patch) | |
tree | 92aa3f1abb45ea10731f54563d3b03aca51a0d89 /Source/ctest.cxx | |
parent | 3a3b55679b1c28ac4d7c24c2de2ce28d88a3d21c (diff) | |
download | CMake-047c7b5af487a4752a0ee39c0fc841e4102d7756.zip CMake-047c7b5af487a4752a0ee39c0fc841e4102d7756.tar.gz CMake-047c7b5af487a4752a0ee39c0fc841e4102d7756.tar.bz2 |
ENH: add more testing
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index ab97699..e231f6e 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -117,7 +117,7 @@ void ctest::ProcessDirectory(int &passed, int &failed) nwd += *j; if (cmSystemTools::FileIsDirectory(nwd.c_str())) { - cerr << "Changing directory into " << nwd.c_str() << "\n"; + std::cerr << "Changing directory into " << nwd.c_str() << "\n"; cmSystemTools::ChangeDirectory(nwd.c_str()); this->ProcessDirectory(passed,failed); } @@ -128,7 +128,7 @@ void ctest::ProcessDirectory(int &passed, int &failed) if (name == "ADD_TEST") { - cerr << "Testing " << args[0] << " ... "; + std::cerr << "Testing " << args[0] << " ... "; // find the test executable std::string testCommand = this->FindExecutable(args[1].c_str()); // add the arguments |