diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-09-06 14:08:14 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-09-06 14:08:14 +0300 |
commit | 50d91293b73ed7b9b50e1928ccf87a1f5281da1f (patch) | |
tree | 2db5c450951acc4b8042f381ddc93be6bc519fd6 /test/Maketests | |
parent | 4f7ec39c9d7a02b1ef483a78e7596390c049df53 (diff) | |
download | egawk-50d91293b73ed7b9b50e1928ccf87a1f5281da1f.tar.gz egawk-50d91293b73ed7b9b50e1928ccf87a1f5281da1f.tar.bz2 egawk-50d91293b73ed7b9b50e1928ccf87a1f5281da1f.zip |
Fix ' flag for %d for MPFR.
Diffstat (limited to 'test/Maketests')
-rw-r--r-- | test/Maketests | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Maketests b/test/Maketests index 2d7b4d78..a1062736 100644 --- a/test/Maketests +++ b/test/Maketests @@ -1366,6 +1366,12 @@ clos1way6: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +commas: + @echo $@ + @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE; \ + AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + crlf: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |