mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 23:21:04 +00:00
This may fix the "0 dirs" stuff we get in the nightly tests when they are
checking out over remote cvs connections. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10278 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
786a518f47
commit
ac5d96b4e3
@ -182,8 +182,8 @@ my $TemplateContents = ReadFile $Template;
|
||||
# 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`;
|
||||
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user