diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-02-17 21:24:24 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-02-17 21:24:24 +0200 |
commit | 2fb99a213dfe3a88087bdccb9f57b6de5f8a5644 (patch) | |
tree | ea541900d428a930bd83c91b2d63c53ec35f7089 /test/Maketests | |
parent | 708196dcbb974209f586a749ef6045c8c3039e1c (diff) | |
download | egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.tar.gz egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.tar.bz2 egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.zip |
Fix calling user defined functions from eval.
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 84a0218d..bdc9633f 100644 --- a/test/Maketests +++ b/test/Maketests @@ -1320,6 +1320,11 @@ dbugeval2: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --debug < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +dbugeval3: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --debug < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + dbugtypedre1: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --debug < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |