cpython/Lib/test/test_xdr.py
Barry Warsaw 5e056bbb76 test_rotor.py: New test of the rotor module.
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.
1996-12-23 23:39:42 +00:00

28 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()'