Skip to content
Snippets Groups Projects
Commit 269df0f8 authored by Jeff Law's avatar Jeff Law
Browse files

* test_summary: find good awk (copied from warn_summary).

From-SVN: r19992
parent 57fec042
No related branches found
No related tags found
No related merge requests found
Sat May 23 23:38:49 1998 Matthias Klose <doko@cs.tu-berlin.de>
* test_summary: find good awk (copied from warn_summary).
Sat May 23 23:38:33 1998 Jeffrey A Law (law@cygnus.com)
* test_summary, warn_summary: New files
......@@ -31,6 +31,18 @@
# -t: prevents logs from being renamed
# -m: specify the e-mail address to send notes to. An appropriate default should be selected from the log files.
# -f: force reports to be mailed; if omitted, only reports that differ from the sent.* version are sent
# Find a good awk.
if test -z "$AWK" ; then
for AWK in gawk nawk awk ; do
if type $AWK 2>&1 | grep 'not found' > /dev/null 2>&1 ; then
:
else
break
fi
done
fi
: ${filesuffix=}; export fileprefix
: ${move=true}; export move
: ${forcemail=false}; export forcemail
......@@ -63,7 +75,7 @@ for file in $files; do
done &&
$anyfile &&
if $forcemail || $anychange; then :; else mailto=nobody; fi &&
gawk '
$AWK '
BEGIN {
lang="";
print "cat <<EOF |";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment