Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
269df0f8
Commit
269df0f8
authored
26 years ago
by
Jeff Law
Browse files
Options
Downloads
Patches
Plain Diff
* test_summary: find good awk (copied from warn_summary).
From-SVN: r19992
parent
57fec042
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/ChangeLog
+7
-0
7 additions, 0 deletions
contrib/ChangeLog
contrib/test_summary
+13
-1
13 additions, 1 deletion
contrib/test_summary
with
20 additions
and
1 deletion
contrib/ChangeLog
0 → 100644
+
7
−
0
View file @
269df0f8
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
This diff is collapsed.
Click to expand it.
contrib/test_summary
+
13
−
1
View file @
269df0f8
...
...
@@ -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 |";
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment