mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00

test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
27 lines
531 B
Python
27 lines
531 B
Python
from test_support import verbose
|
|
import _xdr
|
|
|
|
fd = 8.01
|
|
print '_xdr.pack_float()'
|
|
s = _xdr.pack_float(fd)
|
|
if verbose:
|
|
print `s`
|
|
print '_xdr.unpack_float()'
|
|
f = _xdr.unpack_float(s)
|
|
if verbose:
|
|
print f
|
|
if int(100*f) <> int(100*fd):
|
|
print 'pack_float() <> unpack_float()'
|
|
|
|
fd = 9900000.9
|
|
print '_xdr.pack_double()'
|
|
s = _xdr.pack_double(fd)
|
|
if verbose:
|
|
print `s`
|
|
print '_xdr.unpack_double()'
|
|
f = _xdr.unpack_double(s)
|
|
if verbose:
|
|
print f
|
|
|
|
if int(100*f) <> int(100*fd):
|
|
print 'pack_double() <> unpack_double()'
|