diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-19 21:36:37 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-19 21:36:37 +0200 |
commit | 20ca1d1ba6e46f116e2dc169d263fd548b9bd074 (patch) | |
tree | 74d46c4cf0ecf8704df7d4dde7138ee0e131d1ec /test/Makefile.am | |
parent | 9092450b4459af490e4d52ad3188d3282f36f726 (diff) | |
download | egawk-20ca1d1ba6e46f116e2dc169d263fd548b9bd074.tar.gz egawk-20ca1d1ba6e46f116e2dc169d263fd548b9bd074.tar.bz2 egawk-20ca1d1ba6e46f116e2dc169d263fd548b9bd074.zip |
Fix -0 for MPFR.
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 5a0c5a63..b6390009 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -522,6 +522,8 @@ EXTRA_DIST = \ mpfrexprange.ok \ mpfrieee.awk \ mpfrieee.ok \ + mpfrnegzero.awk \ + mpfrnegzero.ok \ mpfrnr.awk \ mpfrnr.in \ mpfrnr.ok \ @@ -1007,7 +1009,8 @@ INET_TESTS = inetdayu inetdayt inetechu inetecht MACHINE_TESTS = double1 double2 fmtspcl intformat -MPFR_TESTS = mpfrnr mpfrrnd mpfrieee mpfrexprange mpfrsort mpfrbigint +MPFR_TESTS = mpfrnr mpfrnegzero mpfrrnd mpfrieee mpfrexprange \ + mpfrsort mpfrbigint LOCALE_CHARSET_TESTS = \ asort asorti backbigs1 backsmalls1 backsmalls2 \ @@ -1695,6 +1698,11 @@ mpfrrnd: @$(AWK) -M -vPREC=53 -f "$(srcdir)"/$@.awk > _$@ 2>&1 @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +mpfrnegzero: + @echo $@ + @$(AWK) -M -f "$(srcdir)"/$@.awk > _$@ 2>&1 + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + mpfrnr: @echo $@ @$(AWK) -M -vPREC=113 -f "$(srcdir)"/$@.awk "$(srcdir)"/$@.in > _$@ |