diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-11 20:17:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-11 20:17:04 +0000 |
commit | 0bb4828f176a5c9603477f3c9e9f2815e0908e7a (patch) | |
tree | c1b8f7f8a34d75b0c4fc6bebc861a8893b6572b2 /utils | |
parent | e87f6c31d24158b6e16eb0bddafdcf9d453bebad (diff) | |
download | external_llvm-0bb4828f176a5c9603477f3c9e9f2815e0908e7a.zip external_llvm-0bb4828f176a5c9603477f3c9e9f2815e0908e7a.tar.gz external_llvm-0bb4828f176a5c9603477f3c9e9f2815e0908e7a.tar.bz2 |
Fix computation of compiled objects, contributed by Vladimir Merzliakov!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 00c7d4d..3d90847 100755 --- a/utils/NightlyTest.pl +++ b/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"; |