projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e87f6c3
)
Fix computation of compiled objects, contributed by Vladimir Merzliakov!
author
Chris Lattner
<sabre@nondot.org>
Fri, 11 Mar 2005 20:17:04 +0000
(20:17 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 11 Mar 2005 20:17:04 +0000
(20:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20564
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/NightlyTest.pl
patch
|
blob
|
history
diff --git
a/utils/NightlyTest.pl
b/utils/NightlyTest.pl
index 00c7d4dac6984666a49c997b9cb910bf95fbc73d..3d9084755ad42591f2f203e82c84721535ea04b0 100755
(executable)
--- 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";