BUG: Fix Bug #310 - CTest sends wrong time to cvs on Windows
This commit is contained in:
parent
d21532cd02
commit
e92779a657
@ -536,11 +536,15 @@ int cmCTest::UpdateDirectory()
|
|||||||
{
|
{
|
||||||
struct tm* t = ::GetNightlyTime(m_DartConfiguration["NightlyStartTime"]);
|
struct tm* t = ::GetNightlyTime(m_DartConfiguration["NightlyStartTime"]);
|
||||||
char current_time[1024];
|
char current_time[1024];
|
||||||
strftime(current_time, 1000, "%Y-%m-%d %H:%M:%S %Z", t);
|
sprintf(current_time, "%04d-%02d-%02d %02d:%02d:%02d UTC",
|
||||||
|
t->tm_year + 1900,
|
||||||
|
t->tm_mon + 1,
|
||||||
|
t->tm_mday,
|
||||||
|
t->tm_hour,
|
||||||
|
t->tm_min,
|
||||||
|
t->tm_sec);
|
||||||
std::string today_update_date = current_time;
|
std::string today_update_date = current_time;
|
||||||
|
|
||||||
//std::string today_update_date = current_time +
|
|
||||||
// m_DartConfiguration["NightlyStartTime"];
|
|
||||||
extra_update_opts += "-D \"" + today_update_date +"\"";
|
extra_update_opts += "-D \"" + today_update_date +"\"";
|
||||||
//std::cout << "Update: " << extra_update_opts << std::endl;
|
//std::cout << "Update: " << extra_update_opts << std::endl;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user