[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Chris Lattner lattner at cs.uiuc.edu
Mon Jan 12 10:56:02 PST 2004


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.44 -> 1.45

---
Log message:

Eliminate annoying warnings from the tester, hopefully for real this time.


---
Diffs of the changes:  (+2 -2)

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.44 llvm/utils/NightlyTest.pl:1.45
--- llvm/utils/NightlyTest.pl:1.44	Fri Jan  9 12:39:04 2004
+++ llvm/utils/NightlyTest.pl	Mon Jan 12 10:55:30 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, "", "$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 {





More information about the llvm-commits mailing list