diff options
Diffstat (limited to 'tests/unix/ffi_float.py')
-rw-r--r-- | tests/unix/ffi_float.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unix/ffi_float.py b/tests/unix/ffi_float.py index 788b818be5..cc12fa7ad9 100644 --- a/tests/unix/ffi_float.py +++ b/tests/unix/ffi_float.py @@ -28,7 +28,6 @@ print('%.6f' % strtod('1.23', None)) # test passing double and float args libm = ffi_open(('libm.so', 'libm.so.6', 'libc.so.0', 'libc.so.6', 'libc.dylib')) tgamma = libm.func('d', 'tgamma', 'd') -tgammaf = libm.func('f', 'tgammaf', 'f') -for fun in (tgamma, tgammaf): +for fun in (tgamma,): for val in (0.5, 1, 1.0, 1.5, 4, 4.0): print('%.6f' % fun(val)) |