aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-09-06 14:08:14 +0300
committerArnold D. Robbins <arnold@skeeve.com>2021-09-06 14:08:14 +0300
commit50d91293b73ed7b9b50e1928ccf87a1f5281da1f (patch)
tree2db5c450951acc4b8042f381ddc93be6bc519fd6 /test/Makefile.in
parent4f7ec39c9d7a02b1ef483a78e7596390c049df53 (diff)
downloadegawk-50d91293b73ed7b9b50e1928ccf87a1f5281da1f.tar.gz
egawk-50d91293b73ed7b9b50e1928ccf87a1f5281da1f.tar.bz2
egawk-50d91293b73ed7b9b50e1928ccf87a1f5281da1f.zip
Fix ' flag for %d for MPFR.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in15
1 files changed, 12 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 7882baef..3a8381c8 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -458,6 +458,9 @@ EXTRA_DIST = \
colonwarn.awk \
colonwarn.in \
colonwarn.ok \
+ commas.awk \
+ commas.in \
+ commas.ok \
compare.awk \
compare.in \
compare.ok \
@@ -1700,7 +1703,7 @@ GAWK_EXT_TESTS = \
arraytype \
backw badargs beginfile1 beginfile2 binmode1 \
charasbytes colonwarn clos1way clos1way2 clos1way3 clos1way4 clos1way5 \
- clos1way6 crlf \
+ clos1way6 commas crlf \
dbugeval dbugeval2 dbugeval3 dbugtypedre1 dbugtypedre2 delsub \
devfd devfd1 devfd2 dfacheck1 dumpvars \
errno exit fieldwdth forcenum \
@@ -1812,13 +1815,13 @@ NEED_LOCALE_C = \
clos1way gsubtst6 range2
NEED_LOCALE_EN = \
- backbigs1 backsmalls1 backsmalls2 concat4 dfamb1 ignrcas2 lc_num1 \
+ backbigs1 backsmalls1 backsmalls2 commas concat4 dfamb1 ignrcas2 lc_num1 \
mbfw1 mbprintf1 mbprintf3 mbprintf4 mbstr1 mbstr2 posix_compare \
printhuge reint2 rri1 subamp subi18n wideidx wideidx2 \
widesub widesub2 widesub3 widesub4
-# Unused at the moment, since nlstringtest has additional stufff it does
+# Unused at the moment, since nlstringtest has additional stuff it does
# NEED_LOCALE_FR =
# Same for ignrcas3
# NEED_LOCALE_GR =
@@ -4304,6 +4307,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: $$? >>_$@