summaryrefslogtreecommitdiff
path: root/test/Maketests
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-06-01 11:38:52 -0400
committerArnold D. Robbins <arnold@skeeve.com>2016-06-01 11:38:52 -0400
commit9867841a4767347cd89c9fd0127db3c7eaf943e6 (patch)
tree4b01081a570ea6666823b54ef912630f1e3cdfe8 /test/Maketests
parent88c6afdf1c83a7ea51225fbb173d910533c51bb0 (diff)
downloadgawk-9867841a4767347cd89c9fd0127db3c7eaf943e6.tar.gz
Disallow negative hex numbers in input data.
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 e5bde1d2..c7b125c7 100644
--- a/test/Maketests
+++ b/test/Maketests
@@ -415,6 +415,11 @@ hex:
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+hex2:
+ @echo $@
+ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+
hsprint:
@echo $@
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@