summaryrefslogtreecommitdiffstats
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-18 19:51:12 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-18 19:51:12 (GMT)
commitc1c74f925cf249e260ea94532205dc954852d7cd (patch)
tree5ef4272291070024ed56637e1e326047fa96552c /Source/ctest.cxx
parent01bd3b7ab10a8d218649d90e4c4155b6150220cc (diff)
downloadCMake-c1c74f925cf249e260ea94532205dc954852d7cd.zip
CMake-c1c74f925cf249e260ea94532205dc954852d7cd.tar.gz
CMake-c1c74f925cf249e260ea94532205dc954852d7cd.tar.bz2
When in verbose mode print test command
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 82186e4..e61d507 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -876,6 +876,10 @@ void ctest::ProcessDirectory(std::vector<std::string> &passed,
double clock_start, clock_finish;
clock_start = floattime();
+ if ( m_Verbose )
+ {
+ std::cout << std::endl << "Test command: " << testCommand << std::endl;
+ }
bool res = cmSystemTools::RunCommand(testCommand.c_str(), output,
retVal, 0, false);
clock_finish = floattime();