diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-06-03 19:47:04 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-06-03 19:47:04 +0300 |
commit | 3d88a52ad1f67594f8c32c0e8c3f855dde8c6381 (patch) | |
tree | 38996926bfdb9df5c06a67818cfb18565531a66d /test/Maketests | |
parent | 5482bf19246965d6839fe9df1aec0785f0b1a329 (diff) | |
download | egawk-3d88a52ad1f67594f8c32c0e8c3f855dde8c6381.tar.gz egawk-3d88a52ad1f67594f8c32c0e8c3f855dde8c6381.tar.bz2 egawk-3d88a52ad1f67594f8c32c0e8c3f855dde8c6381.zip |
Fix corner case use of exit.
Diffstat (limited to 'test/Maketests')
-rw-r--r-- | test/Maketests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Maketests b/test/Maketests index d0346a8b..0cdbfa4c 100644 --- a/test/Maketests +++ b/test/Maketests @@ -205,6 +205,11 @@ eofsplit: @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ +exit2: + @echo $@ + @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ + exitval2: @echo $@ @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |