[Python-checkins] buildbot failure in x86 XP-3 trunk

buildbot at python.org buildbot at python.org
Sat Apr 5 08:49:11 CEST 2008


The Buildbot has detected a new failure of x86 XP-3 trunk.
Full details are available at:
 http://www.python.org/dev/buildbot/all/x86%20XP-3%20trunk/builds/1241

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

Buildslave for this Build: heller-windows

Build Reason: 
Build Source Stamp: [branch trunk] HEAD
Blamelist: andrew.kuchling,neal.norwitz

BUILD FAILED: failed test

Excerpt from the test logfile:
16 tests failed:
    test_array test_builtin test_cookielib test_deque test_distutils
    test_filecmp test_gzip test_hotshot test_iter test_mmap
    test_multibytecodec test_set test_urllib2 test_uu test_zipfile
    test_zipimport

======================================================================
ERROR: test_tofromfile (test.test_array.UnicodeTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_array.py", line 166, in test_tofromfile
    f = open(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_open (test.test_builtin.BuiltinTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_builtin.py", line 1564, in test_open
    self.write_testfile()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_builtin.py", line 1551, in write_testfile
    fp = open(TESTFN, 'w')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
FAIL: test_intern (test.test_builtin.BuiltinTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_builtin.py", line 1067, in test_intern
    self.assert_(intern(s) is s)
AssertionError

======================================================================
ERROR: test_maxlen (test.test_deque.TestBasic)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_deque.py", line 78, in test_maxlen
    fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_print (test.test_deque.TestBasic)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_deque.py", line 284, in test_print
    fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_read (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 48, in test_read
    self.test_write()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 38, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_readline (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 85, in test_readline
    self.test_write()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 38, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_readlines (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 98, in test_readlines
    self.test_write()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 38, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_seek_read (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 112, in test_seek_read
    self.test_write()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 38, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_seek_whence (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 132, in test_seek_whence
    self.test_write()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 38, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_seek_write (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 144, in test_seek_write
    f = gzip.GzipFile(self.filename, 'w')
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_write (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_gzip.py", line 38, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\gzip.py", line 79, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_addinfo (test.test_hotshot.HotShotTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 74, in test_addinfo
    profiler = self.new_profiler()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 42, in new_profiler
    return hotshot.Profile(self.logfn, lineevents, linetimings)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\hotshot\__init__.py", line 15, in __init__
    logfn, self.lineevents, self.linetimings)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_bad_sys_path (test.test_hotshot.HotShotTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 118, in test_bad_sys_path
    self.assertRaises(RuntimeError, coverage, test_support.TESTFN)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\unittest.py", line 329, in failUnlessRaises
    callableObj(*args, **kwargs)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_line_numbers (test.test_hotshot.HotShotTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 98, in test_line_numbers
    self.run_test(g, events, self.new_profiler(lineevents=1))
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 42, in new_profiler
    return hotshot.Profile(self.logfn, lineevents, linetimings)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\hotshot\__init__.py", line 15, in __init__
    logfn, self.lineevents, self.linetimings)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_start_stop (test.test_hotshot.HotShotTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 104, in test_start_stop
    profiler = self.new_profiler()
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_hotshot.py", line 42, in new_profiler
    return hotshot.Profile(self.logfn, lineevents, linetimings)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\hotshot\__init__.py", line 15, in __init__
    logfn, self.lineevents, self.linetimings)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_builtin_list (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 262, in test_builtin_list
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_builtin_map (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 408, in test_builtin_map
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_builtin_max_min (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 371, in test_builtin_max_min
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_builtin_tuple (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 295, in test_builtin_tuple
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_builtin_zip (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 455, in test_builtin_zip
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_countOf (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 617, in test_countOf
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_in_and_not_in (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 580, in test_in_and_not_in
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_indexOf (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 651, in test_indexOf
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_iter_file (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 232, in test_iter_file
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_unicode_join_endcase (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 534, in test_unicode_join_endcase
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_unpack_iter (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 760, in test_unpack_iter
    f = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_writelines (test.test_iter.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_iter.py", line 677, in test_writelines
    f = file(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_access_parameter (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_mmap.py", line 116, in test_access_parameter
    open(TESTFN, "wb").write("a"*mapsize)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_basic (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_mmap.py", line 24, in test_basic
    f = open(TESTFN, 'w+')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_double_close (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_mmap.py", line 298, in test_double_close
    f = open(TESTFN, 'w+')
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_entire_file (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_mmap.py", line 312, in test_entire_file
    f = open(TESTFN, "w+")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_file (test.test_urllib2.HandlerTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib2.py", line 612, in test_file
    f = open(TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_decode (test.test_uu.UUFileTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_uu.py", line 151, in test_decode
    uu.decode(f)
  File "C:\buildbot\work\trunk.heller-windows\build\lib\uu.py", line 111, in decode
    raise Error('Cannot overwrite existing file: %s' % out_file)
Error: Cannot overwrite existing file: @testo

======================================================================
ERROR: test_decodetwice (test.test_uu.UUFileTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_uu.py", line 168, in test_decodetwice
    f = open(self.tmpin, 'r')
IOError: [Errno 2] No such file or directory: '@testi'

sincerely,
 -The Buildbot



More information about the Python-checkins mailing list