diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-08-27 14:23:45 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-08-27 14:23:45 (GMT) |
commit | d586449a643ff97c1316b1e092b9b5b2bbac33cb (patch) | |
tree | 84a49eefa4dc3b561ccf576b9608c01e85d09bf4 /Source/ctest.cxx | |
parent | 6e2834a877748a7382585a5391e53f3941713b0d (diff) | |
download | CMake-d586449a643ff97c1316b1e092b9b5b2bbac33cb.zip CMake-d586449a643ff97c1316b1e092b9b5b2bbac33cb.tar.gz CMake-d586449a643ff97c1316b1e092b9b5b2bbac33cb.tar.bz2 |
better formatted output
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index e231f6e..dad35d0 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -128,7 +128,8 @@ void ctest::ProcessDirectory(int &passed, int &failed) if (name == "ADD_TEST") { - std::cerr << "Testing " << args[0] << " ... "; + fprintf(stderr,"Testing %-30s ",args[0].c_str()); + //std::cerr << "Testing " << args[0] << " ... "; // find the test executable std::string testCommand = this->FindExecutable(args[1].c_str()); // add the arguments |