summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-10-04 14:58:21 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-10-04 14:58:21 (GMT)
commit89569f07eda48a5896a153d5b9d123cc05776f3a (patch)
treef4eee40d6aba65adf8fa3a743eca3167f66bc0f2 /Source/CTest
parent6258a11c5d96edd9fecd8c85cbd888945acbc066 (diff)
downloadCMake-89569f07eda48a5896a153d5b9d123cc05776f3a.zip
CMake-89569f07eda48a5896a153d5b9d123cc05776f3a.tar.gz
CMake-89569f07eda48a5896a153d5b9d123cc05776f3a.tar.bz2
ENH: More verbosity
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestSubmitHandler.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestSubmitHandler.cxx b/Source/CTest/cmCTestSubmitHandler.cxx
index 0d808ca..a536e4f 100644
--- a/Source/CTest/cmCTestSubmitHandler.cxx
+++ b/Source/CTest/cmCTestSubmitHandler.cxx
@@ -598,6 +598,7 @@ bool cmCTestSubmitHandler::SubmitUsingXMLRPC(const cmStdString& localprefix,
struct stat st;
if ( ::stat(local_file.c_str(), &st) )
{
+ cmCTestLog(m_CTest, ERROR_MESSAGE, " Cannot find file: " << local_file.c_str() << std::endl);
return false;
}
@@ -605,6 +606,7 @@ bool cmCTestSubmitHandler::SubmitUsingXMLRPC(const cmStdString& localprefix,
FILE* fp = fopen(local_file.c_str(), "rb");
if ( !fp )
{
+ cmCTestLog(m_CTest, ERROR_MESSAGE, " Cannot open file: " << local_file.c_str() << std::endl);
return false;
}
@@ -613,6 +615,7 @@ bool cmCTestSubmitHandler::SubmitUsingXMLRPC(const cmStdString& localprefix,
{
delete [] fileBuffer;
fclose(fp);
+ cmCTestLog(m_CTest, ERROR_MESSAGE, " Cannot read file: " << local_file.c_str() << std::endl);
return false;
}
fclose(fp);