Modify script to support checkins on branches
authorChris Lattner <sabre@nondot.org>
Thu, 26 Jun 2003 20:11:07 +0000 (20:11 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Jun 2003 20:11:07 +0000 (20:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6921 91177308-0d34-0410-b5e6-96231b3b80d8

utils/NightlyTest.pl

index 1a56b97e031d89c48eac032bf3c5551ad0847afd..d0ddec3252baa3098f0051bfb6e19372fa2663af 100755 (executable)
@@ -229,7 +229,7 @@ my $DateRE = "[-:0-9 ]+\\+[0-9]+";
 # 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");