summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-02 17:54:05 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-02 17:54:05 (GMT)
commitf92346e3381e756fa0157ce3665534e64550e7a9 (patch)
tree21c4b35a5f7e436980f45f987d384b83a6025adc /Source/CTest
parent3fcf8ebfcf994d3b5e7981b67f83cada86f6ced0 (diff)
downloadCMake-f92346e3381e756fa0157ce3665534e64550e7a9.zip
CMake-f92346e3381e756fa0157ce3665534e64550e7a9.tar.gz
CMake-f92346e3381e756fa0157ce3665534e64550e7a9.tar.bz2
ENH: Be just a bit more verbose
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestSubmit.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestSubmit.cxx b/Source/CTest/cmCTestSubmit.cxx
index 9b64f25..0d647eb 100644
--- a/Source/CTest/cmCTestSubmit.cxx
+++ b/Source/CTest/cmCTestSubmit.cxx
@@ -98,7 +98,7 @@ bool cmCTestSubmit::SubmitUsingFTP(const std::string& localprefix,
/* In windows, this will init the winsock stuff */
::curl_global_init(CURL_GLOBAL_ALL);
-
+
std::string::size_type cc;
for ( cc = 0; cc < files.size(); cc ++ )
{
@@ -169,6 +169,7 @@ bool cmCTestSubmit::SubmitUsingFTP(const std::string& localprefix,
}
// always cleanup
::curl_easy_cleanup(curl);
+ std::cout << "Uploaded: " + local_file << std::endl;
}
}
::curl_global_cleanup();
@@ -372,9 +373,11 @@ bool cmCTestSubmit::TriggerUsingHTTP(const std::vector<std::string>& files,
}
// always cleanup
::curl_easy_cleanup(curl);
+ std::cout << std::endl;
}
}
::curl_global_cleanup();
+ std::cout << "Dart server triggered..." << std::endl;
return true;
}