ENH: Be just a bit more verbose

This commit is contained in:
Andy Cedilnik 2003-05-02 13:54:05 -04:00
parent 3fcf8ebfcf
commit f92346e338
1 changed files with 4 additions and 1 deletions

View File

@ -98,7 +98,7 @@ bool cmCTestSubmit::SubmitUsingFTP(const std::string& localprefix,
/* In windows, this will init the winsock stuff */ /* In windows, this will init the winsock stuff */
::curl_global_init(CURL_GLOBAL_ALL); ::curl_global_init(CURL_GLOBAL_ALL);
std::string::size_type cc; std::string::size_type cc;
for ( cc = 0; cc < files.size(); cc ++ ) for ( cc = 0; cc < files.size(); cc ++ )
{ {
@ -169,6 +169,7 @@ bool cmCTestSubmit::SubmitUsingFTP(const std::string& localprefix,
} }
// always cleanup // always cleanup
::curl_easy_cleanup(curl); ::curl_easy_cleanup(curl);
std::cout << "Uploaded: " + local_file << std::endl;
} }
} }
::curl_global_cleanup(); ::curl_global_cleanup();
@ -372,9 +373,11 @@ bool cmCTestSubmit::TriggerUsingHTTP(const std::vector<std::string>& files,
} }
// always cleanup // always cleanup
::curl_easy_cleanup(curl); ::curl_easy_cleanup(curl);
std::cout << std::endl;
} }
} }
::curl_global_cleanup(); ::curl_global_cleanup();
std::cout << "Dart server triggered..." << std::endl;
return true; return true;
} }