aboutsummaryrefslogtreecommitdiffstats
path: root/test/Maketests
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-06-03 19:47:04 +0300
committerArnold D. Robbins <arnold@skeeve.com>2013-06-03 19:47:04 +0300
commit3d88a52ad1f67594f8c32c0e8c3f855dde8c6381 (patch)
tree38996926bfdb9df5c06a67818cfb18565531a66d /test/Maketests
parent5482bf19246965d6839fe9df1aec0785f0b1a329 (diff)
downloadegawk-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/Maketests5
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: $$? >>_$@