diff options
author | Patrick Jenkins <pjenkins@apple.com> | 2006-07-21 01:39:42 +0000 |
---|---|---|
committer | Patrick Jenkins <pjenkins@apple.com> | 2006-07-21 01:39:42 +0000 |
commit | 49717a4ee56325c5a36aea940edda7d323791553 (patch) | |
tree | 44a31e2fbb333e363a8bec942baa3cf739dbcc62 /utils | |
parent | 1f556c29e3571d6f7acc9a6d7e9df879bab184cd (diff) |
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
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/NewNightlyTest.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index b6e50b8862..0de0eda459 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -106,7 +106,7 @@ my $TestStartTime = gmtime() . "GMT<br>" . 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]; |