summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-01 13:48:54 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-01 13:48:54 +0000
commita2cfcd6739df8117f5d739c0f6ff51addb759b3c (patch)
tree46c1f700ba4b66cde0863a0b56026c62571ab8bd /bin
parent03e68653ad73deb62fcdc662d704c0b838900c86 (diff)
downloadATCD-a2cfcd6739df8117f5d739c0f6ff51addb759b3c.tar.gz
filter out lines from IDL_Cubit that contain "0 errors".
Diffstat (limited to 'bin')
-rwxr-xr-xbin/check_build_logs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/check_build_logs b/bin/check_build_logs
index be23386386e..9a03c6f1dee 100755
--- a/bin/check_build_logs
+++ b/bin/check_build_logs
@@ -73,7 +73,7 @@ chdir $log_directory ||
open (EGREP, "egrep -n \'Error|errors|[^a][Ss]top|No rule to make|\(undefined symb\)|[Ww]arn|not exist|core dumped|: #[0-9]|cxx:\' $log_files |") ||
die "$0: unable to open egrep\n";
while (<EGREP>) {
- push @output, $_;
+ push @output, $_ unless /calls, 0 errors/;
}
close EGREP;