diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-17 08:18:51 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-17 08:18:51 +0200 |
commit | 4ce031ad3c3d157a425f721688a09a7dde018619 (patch) | |
tree | 340825da478a70246a71f441ba69b6188c85dd4a /test/Maketests | |
parent | eb8d0c64228657bad4ef2e2fd732eeed937f3af1 (diff) | |
download | egawk-4ce031ad3c3d157a425f721688a09a7dde018619.tar.gz egawk-4ce031ad3c3d157a425f721688a09a7dde018619.tar.bz2 egawk-4ce031ad3c3d157a425f721688a09a7dde018619.zip |
Fix typeof on null fields.
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 30211d66..8ae71525 100644 --- a/test/Maketests +++ b/test/Maketests @@ -1527,6 +1527,11 @@ typeof4: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +typeof5: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + timeout: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |