[Python-checkins] buildbot failure in sparc Ubuntu 2.5
buildbot at python.org
buildbot at python.org
Fri Apr 11 05:32:12 CEST 2008
The Buildbot has detected a new failure of sparc Ubuntu 2.5.
Full details are available at:
http://www.python.org/dev/buildbot/all/sparc%20Ubuntu%202.5/builds/76
Buildbot URL: http://www.python.org/dev/buildbot/all/
Buildslave for this Build: klose-ubuntu-sparc
Build Reason:
Build Source Stamp: [branch branches/release25-maint] HEAD
Blamelist: guido.van.rossum
BUILD FAILED: failed test
Excerpt from the test logfile:
9 tests failed:
test_atexit test_builtin test_class test_code test_extcall
test_inspect test_pep352 test_pprint test_tuple
======================================================================
FAIL: test_args (test.test_atexit.TestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/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/2.5.klose-ubuntu-sparc/build/Lib/test/test_builtin.py", line 863, 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/2.5.klose-ubuntu-sparc/build/Lib/test/test_builtin.py", line 1549, in test_repr
self.assertEqual(repr(()), '()')
AssertionError: '(...)' != '()'
======================================================================
FAIL: test_str (test.test_builtin.BuiltinTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/test/test_builtin.py", line 1605, in test_str
self.assertEqual(str(()), '()')
AssertionError: '(...)' != '()'
======================================================================
ERROR: test_getfile (test.test_inspect.TestRetrievingSourceCode)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/test/test_inspect.py", line 203, in test_getfile
self.assertEqual(inspect.getfile(mod.StupidGit), mod.__file__)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/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/2.5.klose-ubuntu-sparc/build/Lib/test/test_inspect.py", line 196, in test_getsource
self.assertSourceEqual(mod.StupidGit, 21, 46)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/test/test_inspect.py", line 140, in assertSourceEqual
self.assertEqual(inspect.getsource(obj),
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/inspect.py", line 629, in getsource
lines, lnum = getsourcelines(object)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/inspect.py", line 618, in getsourcelines
lines, lnum = findsource(object)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/inspect.py", line 461, in findsource
file = getsourcefile(object) or getfile(object)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/inspect.py", line 383, in getsourcefile
filename = getfile(object)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/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/2.5.klose-ubuntu-sparc/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/2.5.klose-ubuntu-sparc/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/2.5.klose-ubuntu-sparc/build/Lib/test/inspect_fodder.py'>
======================================================================
FAIL: test_previous_frame (test.test_inspect.TestInterpreterStack)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/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_interface_no_arg (test.test_pep352.ExceptionClassTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/test/test_pep352.py", line 110, in test_interface_no_arg
self.interface_test_driver(results)
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/build/Lib/test/test_pep352.py", line 81, in interface_test_driver
given, expected))
AssertionError: repr: Exception(...) != Exception()
======================================================================
FAIL: test_same_as_repr (test.test_pprint.QueryTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pybot/buildarea/2.5.klose-ubuntu-sparc/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/2.5.klose-ubuntu-sparc/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