[Python-checkins] buildbot failure in amd64 XP 3.0

buildbot at python.org buildbot at python.org
Sat Aug 9 22:50:02 CEST 2008


The Buildbot has detected a new failure of amd64 XP 3.0.
Full details are available at:
 http://www.python.org/dev/buildbot/all/amd64%20XP%203.0/builds/115

Buildbot URL: http://www.python.org/dev/buildbot/all/

Buildslave for this Build: heller-windows-amd64

Build Reason: 
Build Source Stamp: [branch branches/py3k] HEAD
Blamelist: skip.montanaro

BUILD FAILED: failed test

Excerpt from the test logfile:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\multiprocessing\forking.py", line 297, in main
    self = load(from_parent)
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\pickle.py", line 1325, in load
    return Unpickler(file, encoding=encoding, errors=errors).load()
EOFError

5 tests failed:
    test_io test_largefile test_multiprocessing test_sys test_winsound

======================================================================
ERROR: test_large_file_ops (test.test_io.IOTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_io.py", line 213, in test_large_file_ops
    self.large_file_ops(f)
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_io.py", line 139, in large_file_ops
    self.assertEqual(f.write(b"xxx"), 3)
IOError: [Errno 28] No space left on device

======================================================================
ERROR: test_seek (test.test_largefile.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_largefile.py", line 42, in test_seek
    f.flush()
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\io.py", line 1054, in flush
    n = self.raw.write(self._write_buf)
IOError: [Errno 28] No space left on device

======================================================================
FAIL: test_osstat (test.test_largefile.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_largefile.py", line 50, in test_osstat
    self.assertEqual(os.stat(TESTFN)[stat.ST_SIZE], size+1)
AssertionError: 1 != 2500000001

======================================================================
FAIL: test_seek_read (test.test_largefile.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_largefile.py", line 72, in test_seek_read
    self.assertEqual(f.tell(), size + 1 + 0)
AssertionError: 1 != 2500000001

======================================================================
FAIL: test_lseek (test.test_largefile.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_largefile.py", line 93, in test_lseek
    self.assertEqual(os.lseek(f.fileno(), 0, 2), size+1+0)
AssertionError: 1 != 2500000001

======================================================================
FAIL: test_truncate (test.test_largefile.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_largefile.py", line 110, in test_truncate
    self.assertEqual(f.tell(), size+1)
AssertionError: 1 != 2500000001

Traceback (most recent call last):
  File "../lib/test/regrtest.py", line 603, in runtest_inner
    indirect_test()
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_multiprocessing.py", line 1763, in test_main
    ManagerMixin.manager.start()
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\multiprocessing\managers.py", line 499, in start
    self._process.start()
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\multiprocessing\process.py", line 104, in start
    self._popen = Popen(self)
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\multiprocessing\forking.py", line 194, in __init__
    dump(process_obj, to_child, HIGHEST_PROTOCOL)
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\pickle.py", line 1315, in dump
    Pickler(file, protocol).dump(obj)
_pickle.PicklingError: Can't pickle <class 'method'>: attribute lookup builtins.method failed

======================================================================
FAIL: test_objecttypes (test.test_sys.SizeofTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_sys.py", line 577, in test_objecttypes
    check(range(66000), size(h + '3l'))
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_sys.py", line 393, in check_sizeof
    self.assertEqual(result, size, msg)
AssertionError: wrong size for <class 'range'>: got 56, expected 48

======================================================================
ERROR: test_alias_asterisk (test.test_winsound.PlaySoundTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_winsound.py", line 87, in test_alias_asterisk
    winsound.PlaySound('SystemAsterisk', winsound.SND_ALIAS)
RuntimeError: Failed to play sound

======================================================================
ERROR: test_alias_exclamation (test.test_winsound.PlaySoundTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_winsound.py", line 97, in test_alias_exclamation
    winsound.PlaySound('SystemExclamation', winsound.SND_ALIAS)
RuntimeError: Failed to play sound

======================================================================
ERROR: test_alias_exit (test.test_winsound.PlaySoundTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_winsound.py", line 107, in test_alias_exit
    winsound.PlaySound('SystemExit', winsound.SND_ALIAS)
RuntimeError: Failed to play sound

======================================================================
ERROR: test_alias_hand (test.test_winsound.PlaySoundTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_winsound.py", line 117, in test_alias_hand
    winsound.PlaySound('SystemHand', winsound.SND_ALIAS)
RuntimeError: Failed to play sound

======================================================================
ERROR: test_alias_question (test.test_winsound.PlaySoundTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\3.0.heller-windows-amd64\build\lib\test\test_winsound.py", line 127, in test_alias_question
    winsound.PlaySound('SystemQuestion', winsound.SND_ALIAS)
RuntimeError: Failed to play sound

sincerely,
 -The Buildbot



More information about the Python-checkins mailing list