aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-12 16:55:30 +0000
committerChris Lattner <sabre@nondot.org>2004-01-12 16:55:30 +0000
commitd56147dc72a8ec245a5b5ad94013293b8b77849d (patch)
tree6f8e7d5a3d454c27b1aa943905201556f60399d3 /utils
parent12e9b4f1e59317fe63bae52c042ce7555e78dac4 (diff)
downloadexternal_llvm-d56147dc72a8ec245a5b5ad94013293b8b77849d.zip
external_llvm-d56147dc72a8ec245a5b5ad94013293b8b77849d.tar.gz
external_llvm-d56147dc72a8ec245a5b5ad94013293b8b77849d.tar.bz2
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
Diffstat (limited to 'utils')
-rwxr-xr-xutils/NightlyTest.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index 37d6ede..d02e660 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 {