diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-07 22:08:40 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-07 22:08:40 +0200 |
commit | e33ab738045b82db7b449e92c8633ef1d44bb8a7 (patch) | |
tree | 7942c2f074014a3125024d1616bfda95566cd0e6 /test/Maketests | |
parent | 3c8d0097afa139003c55612eaa89340b70f16ee7 (diff) | |
download | egawk-e33ab738045b82db7b449e92c8633ef1d44bb8a7.tar.gz egawk-e33ab738045b82db7b449e92c8633ef1d44bb8a7.tar.bz2 egawk-e33ab738045b82db7b449e92c8633ef1d44bb8a7.zip |
Improve handling of unsupported format modifiers.
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 363a2755..4e6a705f 100644 --- a/test/Maketests +++ b/test/Maketests @@ -1719,6 +1719,11 @@ mktime: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +modifiers: + @echo $@ + @-$(LOCALES) AWK="$(AWKPROG)" "$(srcdir)"/$@.sh > _$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + muldimposix: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --posix >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |