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

Brian Gaeke gaeke at cs.uiuc.edu
Sun Nov 30 23:32:00 PST 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.39 -> 1.40

---
Log message:

This may fix the "0 dirs" stuff we get in the nightly tests when they are
checking out over remote cvs connections.


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

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.39 llvm/utils/NightlyTest.pl:1.40
--- llvm/utils/NightlyTest.pl:1.39	Tue Oct 28 12:37:24 2003
+++ llvm/utils/NightlyTest.pl	Sun Nov 30 23:31:12 2003
@@ -182,8 +182,8 @@
 # Get some static statistics about the current state of CVS
 #
 my $CVSCheckoutTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-CVS-Log.txt`;
-my $NumFilesInCVS = `grep '^U' $Prefix-CVS-Log.txt | wc -l` + 0;
-my $NumDirsInCVS  = `grep '^cvs checkout' $Prefix-CVS-Log.txt | wc -l` + 0;
+my $NumFilesInCVS = `egrep '^U' $Prefix-CVS-Log.txt | wc -l` + 0;
+my $NumDirsInCVS  = `egrep '^cvs (checkout|server|update):' $Prefix-CVS-Log.txt | wc -l` + 0;
 $LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`;
 
 #





More information about the llvm-commits mailing list