diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-11-01 19:58:47 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-11-01 19:58:47 +0200 |
commit | 6faeff915e961443d66b10caf9af4cbed6fb8451 (patch) | |
tree | a97975ecfa619a23637ffa24af41e10d57f0e57c /test/Maketests | |
parent | c2f26d724d65ae3972920013e785906bb4983c96 (diff) | |
download | egawk-6faeff915e961443d66b10caf9af4cbed6fb8451.tar.gz egawk-6faeff915e961443d66b10caf9af4cbed6fb8451.tar.bz2 egawk-6faeff915e961443d66b10caf9af4cbed6fb8451.zip |
Fix a bug in dfa.c, add test case.
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 2cf71332..7fc7d87f 100644 --- a/test/Maketests +++ b/test/Maketests @@ -256,6 +256,11 @@ delfunc: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +dfacheck2: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + dfamb1: @echo $@ $(ZOS_FAIL) @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE; \ |