[Python-checkins] buildbot failure in hppa Ubuntu trunk

buildbot at python.org buildbot at python.org
Sun Sep 30 23:13:45 CEST 2007


The Buildbot has detected a new failure of hppa Ubuntu trunk.
Full details are available at:
 http://www.python.org/dev/buildbot/all/hppa%20Ubuntu%20trunk/builds/182

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

Buildslave for this Build: klose-ubuntu-hppa

Build Reason: 
Build Source Stamp: [branch trunk] HEAD
Blamelist: brett.cannon

BUILD FAILED: failed test

Excerpt from the test logfile:
9 tests failed:
    test_atexit test_builtin test_code test_collections test_extcall
    test_generators test_inspect test_pprint test_tuple

======================================================================
FAIL: test_args (test.test_atexit.TestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_atexit.py", line 23, in test_args
    self.assertEqual(s.getvalue(), "h4 (4,) {'kw': 'abc'}\nh4 () {}\nh1\n")
AssertionError: "h4 (4,) {'kw': 'abc'}\nh4 (...) {}\nh1\n" != "h4 (4,) {'kw': 'abc'}\nh4 () {}\nh1\n"

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

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_builtin.py", line 927, in test_intern
    self.assert_(intern(s) is s)
AssertionError

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

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_builtin.py", line 1613, in test_repr
    self.assertEqual(repr(()), '()')
AssertionError: '(...)' != '()'

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

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_builtin.py", line 1669, in test_str
    self.assertEqual(str(()), '()')
AssertionError: '(...)' != '()'

======================================================================
ERROR: test_odd_sizes (test.test_collections.TestNamedTuple)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_collections.py", line 62, in test_odd_sizes
    Zero = NamedTuple('Zero', '')
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/collections.py", line 52, in NamedTuple
    exec template in m
  File "<string>", line 4
    __fields__ = (...)
                  ^
SyntaxError: invalid syntax

======================================================================
ERROR: test_getfile (test.test_inspect.TestRetrievingSourceCode)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_inspect.py", line 203, in test_getfile
    self.assertEqual(inspect.getfile(mod.StupidGit), mod.__file__)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/inspect.py", line 352, in getfile
    raise TypeError('arg is a built-in class')
TypeError: arg is a built-in class

======================================================================
ERROR: test_getsource (test.test_inspect.TestRetrievingSourceCode)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_inspect.py", line 196, in test_getsource
    self.assertSourceEqual(mod.StupidGit, 21, 46)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_inspect.py", line 140, in assertSourceEqual
    self.assertEqual(inspect.getsource(obj),
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/inspect.py", line 629, in getsource
    lines, lnum = getsourcelines(object)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/inspect.py", line 618, in getsourcelines
    lines, lnum = findsource(object)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/inspect.py", line 461, in findsource
    file = getsourcefile(object) or getfile(object)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/inspect.py", line 383, in getsourcefile
    filename = getfile(object)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/inspect.py", line 352, in getfile
    raise TypeError('arg is a built-in class')
TypeError: arg is a built-in class

======================================================================
FAIL: test_getcomments (test.test_inspect.TestRetrievingSourceCode)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_inspect.py", line 178, in test_getcomments
    self.assertEqual(inspect.getcomments(mod.StupidGit), '# line 20\n')
AssertionError: None != '# line 20\n'

======================================================================
FAIL: test_getmodule (test.test_inspect.TestRetrievingSourceCode)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_inspect.py", line 184, in test_getmodule
    self.assertEqual(inspect.getmodule(mod.StupidGit), mod)
AssertionError: None != <module 'test.inspect_fodder' from '/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/inspect_fodder.py'>

======================================================================
FAIL: test_previous_frame (test.test_inspect.TestInterpreterStack)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_inspect.py", line 124, in test_previous_frame
    '(a=7, b=8, c=9, d=3, (e=4, (f=5,)), *g=(), **h={})')
AssertionError: '(a=7, b=8, c=9, d=3, (e=4, (f=5,)), *g=(...), **h={})' != '(a=7, b=8, c=9, d=3, (e=4, (f=5,)), *g=(), **h={})'

======================================================================
FAIL: test_same_as_repr (test.test_pprint.QueryTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_pprint.py", line 134, in test_same_as_repr
    (native, got, function))
AssertionError: expected (...) got () from pprint.pformat

======================================================================
FAIL: test_repr (test.test_tuple.TupleTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-hppa/build/Lib/test/test_tuple.py", line 76, in test_repr
    self.assertEqual(repr(a0), "()")
AssertionError: '(...)' != '()'

make: *** [buildbottest] Error 1

sincerely,
 -The Buildbot



More information about the Python-checkins mailing list