[llvm-commits] CVS: llvm/utils/NightlyTest.pl
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 9 12:41:02 PST 2004
Changes in directory llvm/utils:
NightlyTest.pl updated: 1.43 -> 1.44
---
Log message:
Fix annoying warnings. W doesn't have a revision number
---
Diffs of the changes: (+2 -2)
Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.43 llvm/utils/NightlyTest.pl:1.44
--- llvm/utils/NightlyTest.pl:1.43 Tue Jan 6 19:48:26 2004
+++ llvm/utils/NightlyTest.pl Fri Jan 9 12:39:04 2004
@@ -281,8 +281,8 @@
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, $4, "$6/$5");
+ } elsif ($File =~ /([W]) ($DateRE) ([^ ]+) +([^ ]+)/) {
+ ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$5/$4");
} elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
} else {
More information about the llvm-commits
mailing list