mirror of
https://github.com/python/cpython.git
synced 2025-01-15 04:55:00 +08:00
5e056bbb76
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.
28 lines
531 B
Python
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()'
|