[llvm-commits] CVS: llvm/utils/NightlyTest.pl
Chris Lattner
lattner at cs.uiuc.edu
Fri Mar 11 12:17:20 PST 2005
Changes in directory llvm/utils:
NightlyTest.pl updated: 1.92 -> 1.93
---
Log message:
Fix computation of compiled objects, contributed by Vladimir Merzliakov!
---
Diffs of the changes: (+1 -1)
NightlyTest.pl | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.92 llvm/utils/NightlyTest.pl:1.93
--- llvm/utils/NightlyTest.pl:1.92 Thu Mar 10 10:32:33 2005
+++ llvm/utils/NightlyTest.pl Fri Mar 11 14:17:04 2005
@@ -414,7 +414,7 @@
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";
More information about the llvm-commits
mailing list