This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [2.3.2] bz2 test failure on AIX 4.3.2, Tru64 UNIX
Type: behavior Stage: resolved
Components: Extension Modules, Tests Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: ajaksu2, tww-china
Priority: low Keywords:

Created on 2003-11-03 17:58 by tww-china, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg60416 - (view) Author: The Written Word (Albert Chin) (tww-china) Date: 2003-11-03 17:58
I'm seeing test failures of the bz2 module on AIX 4.3.2
and Tru64 UNIX (and sporadically on HP-UX 11.00):
$ cd /opt/build/Python-2.3.2
$ ./python -E -tt Lib/test/test_bz2.py
testIterator (__main__.BZ2FileTest) ... ok
testOpenDel (__main__.BZ2FileTest) ... ok
testOpenNonexistent (__main__.BZ2FileTest) ... ok
...
testDecompress (__main__.FuncTest) ... ok
testDecompressEmpty (__main__.FuncTest) ... ok
testDecompressIncomplete (__main__.FuncTest) ... ok

======================================================================
ERROR: testCompress (__main__.FuncTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "Lib/test/test_bz2.py", line 295, in testCompress
    self.assertEqual(self.decompress(data), self.TEXT)
  File "Lib/test/test_bz2.py", line 26, in decompress
    pop.tochild.close()
IOError: [Errno 32] Broken pipe

----------------------------------------------------------------------
Ran 30 tests in 5.213s

FAILED (errors=1)
Traceback (most recent call last):
  File "Lib/test/test_bz2.py", line 320, in ?
    test_main()
  File "Lib/test/test_bz2.py", line 316, in test_main
    FuncTest
  File
"/opt/build/Python-2.Lib/test/test_support.py",
line 262, in run_unittest
    run_suite(suite, testclass)
  File
"/opt/build/Python-2.Lib/test/test_support.py",
line 247, in run_suite
    raise TestFailed(err)
test.test_support.TestFailed: Traceback (most recent
call last):
  File "Lib/test/test_bz2.py", line 295, in testCompress
    self.assertEqual(self.decompress(data), self.TEXT)
  File "Lib/test/test_bz2.py", line 26, in decompress
    pop.tochild.close()
IOError: [Errno 32] Broken pipe
msg81879 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2009-02-13 04:48
Will close unless someone can point any current relevance.
History
Date User Action Args
2022-04-11 14:56:00adminsetgithub: 39494
2009-02-20 01:53:00ajaksu2setstatus: pending -> closed
resolution: out of date
stage: resolved
2009-02-18 01:52:07ajaksu2setstatus: open -> pending
2009-02-13 04:48:27ajaksu2setpriority: normal -> low
type: behavior
messages: + msg81879
components: + Tests
nosy: + ajaksu2
2003-11-03 17:58:37tww-chinacreate