summaryrefslogtreecommitdiff
path: root/tests/float/string_format_modulo2_intbig.py
diff options
context:
space:
mode:
authorGlenn Ruben Bakke <glennbakke@gmail.com>2017-03-07 17:46:34 +0100
committerGlenn Ruben Bakke <glennbakke@gmail.com>2017-03-07 17:46:34 +0100
commitfd8f2c36f539a386192d106ef5ca0ce6a3926aec (patch)
tree7b0bf8cb7a0677c1987b2d3e725f57cffc2e8633 /tests/float/string_format_modulo2_intbig.py
parent5f705adae06d4925351fe716f956d0fc922e53cf (diff)
parentfd49ff991769a29b2dcc0f8ed88143487f2bd131 (diff)
Merge branch 'master' into nrf5_no_sdk
Diffstat (limited to 'tests/float/string_format_modulo2_intbig.py')
-rw-r--r--tests/float/string_format_modulo2_intbig.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/float/string_format_modulo2_intbig.py b/tests/float/string_format_modulo2_intbig.py
new file mode 100644
index 000000000..9992ba65d
--- /dev/null
+++ b/tests/float/string_format_modulo2_intbig.py
@@ -0,0 +1,21 @@
+# test formatting floats with large precision, that it doesn't overflow the buffer
+
+def test(num, num_str):
+ if num == float('inf') or num == 0.0 and num_str != '0.0':
+ # skip numbers that overflow or underflow the FP precision
+ return
+ for kind in ('e', 'f', 'g'):
+ # check precision either side of the size of the buffer (32 bytes)
+ for prec in range(23, 36, 2):
+ fmt = '%.' + '%d' % prec + kind
+ s = fmt % num
+ check = abs(float(s) - num)
+ if num > 1:
+ check /= num
+ if check > 1e-6:
+ print('FAIL', num_str, fmt, s, len(s), check)
+
+# check most powers of 10, making sure to include exponents with 3 digits
+for e in range(-101, 102):
+ num = pow(10, e)
+ test(num, '1e%d' % e)