summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-11 20:17:04 +0000
committerChris Lattner <sabre@nondot.org>2005-03-11 20:17:04 +0000
commit5490aae86351bcffe54013c88c0bf5b757537aff (patch)
treeb13097aa2ce51e46e86dd455dacd8934618ed02e /llvm
parent27a3df07a07d52a357597c7c45cf041efe00f823 (diff)
downloadbcm5719-llvm-5490aae86351bcffe54013c88c0bf5b757537aff.tar.gz
bcm5719-llvm-5490aae86351bcffe54013c88c0bf5b757537aff.zip
Fix computation of compiled objects, contributed by Vladimir Merzliakov!
llvm-svn: 20564
Diffstat (limited to 'llvm')
-rwxr-xr-xllvm/utils/NightlyTest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/NightlyTest.pl b/llvm/utils/NightlyTest.pl
index 00c7d4dac69..3d9084755ad 100755
--- a/llvm/utils/NightlyTest.pl
+++ b/llvm/utils/NightlyTest.pl
@@ -414,7 +414,7 @@ if (!$NOCHECKOUT) {
my @Linked = split '\n', `grep Linking $BuildLog`;
my $NumExecutables = scalar(grep(/executable/, @Linked));
my $NumLibraries = scalar(grep(!/executable/, @Linked));
-my $NumObjects = `grep '^Compiling' $BuildLog | wc -l` + 0;
+my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
OpenPOWER on IntegriCloud