aboutsummaryrefslogtreecommitdiffstats
path: root/test/mpfrexprange.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/mpfrexprange.awk')
-rw-r--r--test/mpfrexprange.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/mpfrexprange.awk b/test/mpfrexprange.awk
new file mode 100644
index 00000000..68e95a39
--- /dev/null
+++ b/test/mpfrexprange.awk
@@ -0,0 +1,7 @@
+# test change of allowed exponent range
+BEGIN {
+ x=1.0e-10000
+ print x+0
+ PREC="double"
+ print x+0
+}