From 004e19e38d810c3146c77b68a9274210ee008b1d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 13 Feb 2005 16:08:30 +0000 Subject: [PATCH] Include local time on the web page for start/end times. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20150 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/NightlyTest.pl | 5 +++-- utils/NightlyTestTemplate.html | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 36a85563114..9bbbf49b141 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -66,7 +66,7 @@ my $WebDir = $ENV{'WEBDIR'}; @TIME = localtime; my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3]; my $DateString = strftime "%B %d, %Y", localtime; -my $TestStartTime = gmtime; +my $TestStartTime = gmtime() . "GMT
" . localtime() . " (local)"; # Command line argument settings... my $NOCHECKOUT = 0; @@ -798,7 +798,8 @@ if ( $VERBOSE ) { } # Main HTML file... my $Output; -my $TestFinishTime = gmtime; +my $TestFinishTime = gmtime() . " GMT
" . localtime() . " (local)"; + my $TestPlatform = `uname -a`; eval "\$Output = <Nightly Test Overview:

CVS Tree Overview:

-- 2.34.1