From: Chris Lattner Date: Sun, 13 Feb 2005 16:08:30 +0000 (+0000) Subject: Include local time on the web page for start/end times. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=004e19e38d810c3146c77b68a9274210ee008b1d;p=oota-llvm.git 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 --- 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: