From: Patrick Jenkins Date: Fri, 21 Jul 2006 01:39:42 +0000 (+0000) Subject: Fixed issue where nightly test always tells you you need to use -nickname X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=49717a4ee56325c5a36aea940edda7d323791553;p=oota-llvm.git Fixed issue where nightly test always tells you you need to use -nickname git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29241 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index b6e50b8862b..0de0eda4598 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -106,7 +106,7 @@ my $TestStartTime = gmtime() . "GMT
" . localtime() . " (local)"; # ############################################################## $CONFIGUREARGS=""; - +$nickname=""; $NOTEST=0; $NORUNNINGTESTS=0; @@ -139,7 +139,6 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { $CONFIGUREARGS .= "--with-externals=$ARGV[0]"; shift; next; } if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; } - else{ $nickname=""; } if (/^-gccpath/) { $CONFIGUREARGS .= " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++"; $GCCPATH=$ARGV[0];