[llvm-commits] CVS: llvm/utils/NightlyTest.pl
Chris Lattner
lattner at cs.uiuc.edu
Thu Jun 26 15:12:01 PDT 2003
Changes in directory llvm/utils:
NightlyTest.pl updated: 1.13 -> 1.14
---
Log message:
Modify script to support checkins on branches
---
Diffs of the changes:
Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.13 llvm/utils/NightlyTest.pl:1.14
--- llvm/utils/NightlyTest.pl:1.13 Wed Jun 18 13:26:22 2003
+++ llvm/utils/NightlyTest.pl Thu Jun 26 15:11:07 2003
@@ -229,7 +229,7 @@
# Loop over every record from the CVS history, filling in the hashes.
foreach $File (@CVSHistory) {
my ($Type, $Date, $UID, $Rev, $Filename);
- if ($File =~ /([AMRUGC])\s($DateRE)\s([^\s]+)\s+([0-9.]+)\s+([^\s]+)\s+([^\s]+)/) {
+ if ($File =~ /([AMRUGC])\s($DateRE)\s([^\s].......) (.[0-9.]*)\s+([^\s]+)\s+([^\s]+)/) {
($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
} elsif ($File =~ /([W])\s($DateRE)\s([^\s]+) +([^\s]+)\s+([^\s]+)/) {
($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
More information about the llvm-commits
mailing list