[llvm-commits] [llvm] r74605 - /llvm/trunk/utils/NewNightlyTest.pl
Daniel Dunbar
daniel at zuster.org
Wed Jul 1 07:53:07 PDT 2009
Author: ddunbar
Date: Wed Jul 1 09:52:59 2009
New Revision: 74605
URL: http://llvm.org/viewvc/llvm-project?rev=74605&view=rev
Log:
NewNightlyTest: Include minutes/seconds in log file names, to support running
multiple runs per day (insane, I know).
Also, remove some unused variables.
Modified:
llvm/trunk/utils/NewNightlyTest.pl
Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=74605&r1=74604&r2=74605&view=diff
==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Wed Jul 1 09:52:59 2009
@@ -122,9 +122,7 @@
#
##############################################################
@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() . "GMT<br>" . localtime() . " (local)";
+my $DATE = sprintf "%4d-%02d-%02d_%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3], $TIME[1], $TIME[0];
##############################################################
#
More information about the llvm-commits
mailing list