From: Chris Lattner Date: Mon, 12 Jan 2004 16:55:30 +0000 (+0000) Subject: Eliminate annoying warnings from the tester, hopefully for real this time. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d56147dc72a8ec245a5b5ad94013293b8b77849d;p=oota-llvm.git Eliminate annoying warnings from the tester, hopefully for real this time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10777 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 37d6ede3f14..d02e660ad19 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -281,8 +281,8 @@ foreach $File (@CVSHistory) { my ($Type, $Date, $UID, $Rev, $Filename); if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) { ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5"); - } elsif ($File =~ /([W]) ($DateRE) ([^ ]+) +([^ ]+)/) { - ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$5/$4"); + } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) { + ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", ""); } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) { ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/"); } else {