diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2010-03-18 18:48:42 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2010-03-18 18:48:42 (GMT) |
commit | 9eea95c90f62c2d2299938400ba07ea23c0a834d (patch) | |
tree | 324d2b78a62be7d0138698c9a7bffd039d1ed3a0 /Source/cmCTest.cxx | |
parent | 9676c52c3ea26dcd74bdffd14fa91869c00354f7 (diff) | |
download | CMake-9eea95c90f62c2d2299938400ba07ea23c0a834d.zip CMake-9eea95c90f62c2d2299938400ba07ea23c0a834d.tar.gz CMake-9eea95c90f62c2d2299938400ba07ea23c0a834d.tar.bz2 |
Fix StopTime to also account for localtime being a day ahead of gmtime
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 098bd7a..9ab881c 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -2561,15 +2561,16 @@ void cmCTest::DetermineNextDayStop() lctime = localtime(¤t_time); int local_hour = lctime->tm_hour; - int tzone_offset = 0; + int tzone_offset = local_hour - gm_hour; if(gm_time > current_time && gm_hour < local_hour) { // this means gm_time is on the next day - tzone_offset = local_hour - gm_hour - 24; + tzone_offset -= 24; } - else + else if(gm_time < current_time && gm_hour > local_hour) { - tzone_offset = local_hour - gm_hour; + // this means gm_time is on the previous day + tzone_offset += 24; } tzone_offset *= 100; |