diff options
author | Guido van Rossum <guido@python.org> | 1993-01-26 13:04:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-01-26 13:04:43 (GMT) |
commit | 35fb82a33f4bc78be1f7d219b8ebd078b37c90cb (patch) | |
tree | 1075bc3db6c7e05e13fb9e247b447c1e085c3cfe /Lib/test/test_b1.py | |
parent | 93f07400737a430ce642b4e7f6c9bd3e4460229c (diff) | |
download | cpython-35fb82a33f4bc78be1f7d219b8ebd078b37c90cb.zip cpython-35fb82a33f4bc78be1f7d219b8ebd078b37c90cb.tar.gz cpython-35fb82a33f4bc78be1f7d219b8ebd078b37c90cb.tar.bz2 |
* os.py: _exit doesn't exist in all variations of posix
* Added fcmp() to test_support.py and use it in test*.py
Diffstat (limited to 'Lib/test/test_b1.py')
-rw-r--r-- | Lib/test/test_b1.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index b780c72..e5611e5 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -42,9 +42,9 @@ if cmp(1, -1) <> 1: raise TestFailed, 'cmp(1, -1)' if cmp(1, 1) <> 0: raise TestFailed, 'cmp(1, 1)' print 'coerce' -if coerce(1, 1.1) <> (1.0, 1.1): raise TestFailed, 'coerce(1, 1.1)' +if fcmp(coerce(1, 1.1), (1.0, 1.1)): raise TestFailed, 'coerce(1, 1.1)' if coerce(1, 1L) <> (1L, 1L): raise TestFailed, 'coerce(1, 1L)' -if coerce(1L, 1.1) <> (1.0, 1.1): raise TestFailed, 'coerce(1L, 1.1)' +if fcmp(coerce(1L, 1.1), (1.0, 1.1)): raise TestFailed, 'coerce(1L, 1.1)' print 'dir' x = 1 @@ -68,10 +68,14 @@ if divmod(-12, 7L) <> (-2, 2L): raise TestFailed, 'divmod(-12, 7L)' if divmod(12L, -7) <> (-2L, -2): raise TestFailed, 'divmod(12L, -7)' if divmod(-12L, -7) <> (1L, -5): raise TestFailed, 'divmod(-12L, -7)' # -if divmod(3.25, 1.0) <> (3.0, 0.25): raise TestFailed, 'divmod(3.25, 1.0)' -if divmod(-3.25, 1.0) <> (-4.0, 0.75): raise TestFailed, 'divmod(-3.25, 1.0)' -if divmod(3.25, -1.0) <> (-4.0, -0.75): raise TestFailed, 'divmod(3.25, -1.0)' -if divmod(-3.25, -1.0) <> (3.0, -0.25): raise TestFailed, 'divmod(-3.25, -1.0)' +if fcmp(divmod(3.25, 1.0), (3.0, 0.25)): + raise TestFailed, 'divmod(3.25, 1.0)' +if fcmp(divmod(-3.25, 1.0), (-4.0, 0.75)): + raise TestFailed, 'divmod(-3.25, 1.0)' +if fcmp(divmod(3.25, -1.0), (-4.0, -0.75)): + raise TestFailed, 'divmod(3.25, -1.0)' +if fcmp(divmod(-3.25, -1.0), (3.0, -0.25)): + raise TestFailed, 'divmod(-3.25, -1.0)' print 'eval' if eval('1+1') <> 2: raise TestFailed, 'eval(\'1+1\')' |