aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog5
-rw-r--r--test/Makefile.am4
-rw-r--r--test/Makefile.in9
-rw-r--r--test/Maketests5
4 files changed, 21 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index c3dcd555..e79d3383 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2021-09-06 Arnold D. Robbins <arnold@skeeve.com>
+
+ * Makefile.am (EXTRA_DIST): typeof6, new test.
+ * typeof6.awk, typeof6.ok: New files.
+
2021-08-13 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): regexsub, new test.
diff --git a/test/Makefile.am b/test/Makefile.am
index 7ee23813..e4a7b640 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1329,6 +1329,8 @@ EXTRA_DIST = \
typeof5.awk \
typeof5.in \
typeof5.ok \
+ typeof6.awk \
+ typeof6.ok \
uninit2.awk \
uninit2.ok \
uninit3.awk \
@@ -1468,7 +1470,7 @@ GAWK_EXT_TESTS = \
symtab8 symtab9 symtab10 symtab11 \
timeout typedregex1 typedregex2 typedregex3 typedregex4 \
typedregex5 typedregex6 \
- typeof1 typeof2 typeof3 typeof4 typeof5 \
+ typeof1 typeof2 typeof3 typeof4 typeof5 typeof6 \
watchpoint1
ARRAYDEBUG_TESTS = arrdbg
diff --git a/test/Makefile.in b/test/Makefile.in
index 79ca9a3b..7882baef 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1592,6 +1592,8 @@ EXTRA_DIST = \
typeof5.awk \
typeof5.in \
typeof5.ok \
+ typeof6.awk \
+ typeof6.ok \
uninit2.awk \
uninit2.ok \
uninit3.awk \
@@ -1731,7 +1733,7 @@ GAWK_EXT_TESTS = \
symtab8 symtab9 symtab10 symtab11 \
timeout typedregex1 typedregex2 typedregex3 typedregex4 \
typedregex5 typedregex6 \
- typeof1 typeof2 typeof3 typeof4 typeof5 \
+ typeof1 typeof2 typeof3 typeof4 typeof5 typeof6 \
watchpoint1
ARRAYDEBUG_TESTS = arrdbg
@@ -5042,6 +5044,11 @@ typeof5:
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+typeof6:
+ @echo $@
+ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+
double1:
@echo $@ $(ZOS_FAIL)
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
diff --git a/test/Maketests b/test/Maketests
index 12cc1644..2d7b4d78 100644
--- a/test/Maketests
+++ b/test/Maketests
@@ -2106,6 +2106,11 @@ typeof5:
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+typeof6:
+ @echo $@
+ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+
double1:
@echo $@ $(ZOS_FAIL)
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@