Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 612132 Details for
Bug 856672
Upstream tests failed: /CoreOS/python/Sanity/unit-tests
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Full output of test_gdb.py
test_gdb.output (text/plain), 69.71 KB, created by
Branislav Náter
on 2012-09-12 14:37:46 UTC
(
hide
)
Description:
Full output of test_gdb.py
Filename:
MIME Type:
Creator:
Branislav Náter
Created:
2012-09-12 14:37:46 UTC
Size:
69.71 KB
patch
obsolete
>test_NULL_instance_dict (__main__.PrettyPrintTests) >Ensure that a PyInstanceObject with with a NULL in_dict is handled ... FAIL >test_NULL_ob_type (__main__.PrettyPrintTests) >Ensure that a PyObject* with NULL ob_type is handled gracefully ... FAIL >test_NULL_ptr (__main__.PrettyPrintTests) >Ensure that a NULL PyObject* is handled gracefully ... FAIL >test_builtin_function (__main__.PrettyPrintTests) ... FAIL >test_builtin_method (__main__.PrettyPrintTests) ... FAIL >test_builtins_help (__main__.PrettyPrintTests) >Ensure that the new-style class _Helper in site.py can be handled ... FAIL >test_classic_class (__main__.PrettyPrintTests) >Verify the pretty-printing of classic class instances ... FAIL >test_corrupt_ob_type (__main__.PrettyPrintTests) >Ensure that a PyObject* with a corrupt ob_type is handled gracefully ... FAIL >test_corrupt_tp_flags (__main__.PrettyPrintTests) >Ensure that a PyObject* with a type with corrupt tp_flags is handled ... FAIL >test_corrupt_tp_name (__main__.PrettyPrintTests) >Ensure that a PyObject* with a type with corrupt tp_name is handled ... FAIL >test_dicts (__main__.PrettyPrintTests) >Verify the pretty-printing of dictionaries ... FAIL >test_exceptions (__main__.PrettyPrintTests) ... FAIL >test_frames (__main__.PrettyPrintTests) ... FAIL >test_frozensets (__main__.PrettyPrintTests) >Verify the pretty-printing of frozensets ... FAIL >test_getting_backtrace (__main__.PrettyPrintTests) ... ok >test_int (__main__.PrettyPrintTests) >Verify the pretty-printing of various "int" values ... FAIL >test_lists (__main__.PrettyPrintTests) >Verify the pretty-printing of lists ... FAIL >test_long (__main__.PrettyPrintTests) >Verify the pretty-printing of various "long" values ... FAIL >test_modern_class (__main__.PrettyPrintTests) >Verify the pretty-printing of new-style class instances ... FAIL >test_selfreferential_dict (__main__.PrettyPrintTests) >Ensure that a reference loop involving a dict doesn't lead proxyval ... FAIL >test_selfreferential_list (__main__.PrettyPrintTests) >Ensure that a reference loop involving a list doesn't lead proxyval ... FAIL >test_selfreferential_new_style_instance (__main__.PrettyPrintTests) ... FAIL >test_selfreferential_old_style_instance (__main__.PrettyPrintTests) ... FAIL >test_sets (__main__.PrettyPrintTests) >Verify the pretty-printing of sets ... FAIL >test_singletons (__main__.PrettyPrintTests) >Verify the pretty-printing of True, False and None ... FAIL >test_strings (__main__.PrettyPrintTests) >Verify the pretty-printing of strings ... FAIL >test_subclassing_list (__main__.PrettyPrintTests) >Verify the pretty-printing of an instance of a list subclass ... FAIL >test_subclassing_tuple (__main__.PrettyPrintTests) >Verify the pretty-printing of an instance of a tuple subclass ... FAIL >test_truncation (__main__.PrettyPrintTests) >Verify that very long output is truncated ... FAIL >test_tuples (__main__.PrettyPrintTests) >Verify the pretty-printing of tuples ... FAIL >test_unicode (__main__.PrettyPrintTests) >Verify the pretty-printing of unicode values ... FAIL >test_basic_command (__main__.PyListTests) >Verify that the "py-list" command works ... skipped 'Python was compiled with optimizations' >test_one_abs_arg (__main__.PyListTests) >Verify the "py-list" command with one absolute argument ... skipped 'Python was compiled with optimizations' >test_two_abs_args (__main__.PyListTests) >Verify the "py-list" command with two absolute arguments ... skipped 'Python was compiled with optimizations' >test_down_at_bottom (__main__.StackNavigationTests) >Verify handling of "py-down" at the bottom of the stack ... FAIL >test_pyup_command (__main__.StackNavigationTests) >Verify that the "py-up" command works ... skipped 'Python was compiled with optimizations' >test_up_at_top (__main__.StackNavigationTests) >Verify handling of "py-up" at the top of the stack ... FAIL >test_up_then_down (__main__.StackNavigationTests) >Verify "py-up" followed by "py-down" ... skipped 'Python was compiled with optimizations' >test_basic_command (__main__.PyBtTests) >Verify that the "py-bt" command works ... skipped 'Python was compiled with optimizations' >test_basic_command (__main__.PyPrintTests) >Verify that the "py-print" command works ... skipped 'Python was compiled with optimizations' >test_print_after_up (__main__.PyPrintTests) ... skipped 'Python was compiled with optimizations' >test_printing_builtin (__main__.PyPrintTests) ... skipped 'Python was compiled with optimizations' >test_printing_global (__main__.PyPrintTests) ... skipped 'Python was compiled with optimizations' >test_basic_command (__main__.PyLocalsTests) ... skipped 'Python was compiled with optimizations' >test_locals_after_up (__main__.PyLocalsTests) ... skipped 'Python was compiled with optimizations' > >====================================================================== >FAIL: test_NULL_instance_dict (__main__.PrettyPrintTests) >Ensure that a PyInstanceObject with with a NULL in_dict is handled >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 487, in test_NULL_instance_dict > exptype='Foo') > File "test_gdb.py", line 425, in assertSane > cmds_after_breakpoint=cmds_after_breakpoint) > File "test_gdb.py", line 205, in get_gdb_repr > import_site=import_site) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "PyInstanceObject" in current context.' != '' > >====================================================================== >FAIL: test_NULL_ob_type (__main__.PrettyPrintTests) >Ensure that a PyObject* with NULL ob_type is handled gracefully >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 458, in test_NULL_ob_type > 'set op->ob_type=0') > File "test_gdb.py", line 425, in assertSane > cmds_after_breakpoint=cmds_after_breakpoint) > File "test_gdb.py", line 205, in get_gdb_repr > import_site=import_site) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "op" in current context.' != '' > >====================================================================== >FAIL: test_NULL_ptr (__main__.PrettyPrintTests) >Ensure that a NULL PyObject* is handled gracefully >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 450, in test_NULL_ptr > 'backtrace']) > File "test_gdb.py", line 205, in get_gdb_repr > import_site=import_site) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "op" in current context.' != '' > >====================================================================== >FAIL: test_builtin_function (__main__.PrettyPrintTests) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 589, in test_builtin_function > gdb_repr, gdb_output = self.get_gdb_repr('print len') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_builtin_method (__main__.PrettyPrintTests) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 593, in test_builtin_method > gdb_repr, gdb_output = self.get_gdb_repr('import sys; print sys.stdout.readlines') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_builtins_help (__main__.PrettyPrintTests) >Ensure that the new-style class _Helper in site.py can be handled >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 494, in test_builtins_help > gdb_repr, gdb_output = self.get_gdb_repr('print __builtins__.help', import_site=True) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_classic_class (__main__.PrettyPrintTests) >Verify the pretty-printing of classic class instances >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 368, in test_classic_class > print foo''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_corrupt_ob_type (__main__.PrettyPrintTests) >Ensure that a PyObject* with a corrupt ob_type is handled gracefully >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 464, in test_corrupt_ob_type > expvalue=42) > File "test_gdb.py", line 425, in assertSane > cmds_after_breakpoint=cmds_after_breakpoint) > File "test_gdb.py", line 205, in get_gdb_repr > import_site=import_site) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "op" in current context.' != '' > >====================================================================== >FAIL: test_corrupt_tp_flags (__main__.PrettyPrintTests) >Ensure that a PyObject* with a type with corrupt tp_flags is handled >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 470, in test_corrupt_tp_flags > expvalue=42) > File "test_gdb.py", line 425, in assertSane > cmds_after_breakpoint=cmds_after_breakpoint) > File "test_gdb.py", line 205, in get_gdb_repr > import_site=import_site) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "op" in current context.' != '' > >====================================================================== >FAIL: test_corrupt_tp_name (__main__.PrettyPrintTests) >Ensure that a PyObject* with a type with corrupt tp_name is handled >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 476, in test_corrupt_tp_name > expvalue=42) > File "test_gdb.py", line 425, in assertSane > cmds_after_breakpoint=cmds_after_breakpoint) > File "test_gdb.py", line 205, in get_gdb_repr > import_site=import_site) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "op" in current context.' != '' > >====================================================================== >FAIL: test_dicts (__main__.PrettyPrintTests) >Verify the pretty-printing of dictionaries >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 262, in test_dicts > self.assertGdbRepr({}) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_exceptions (__main__.PrettyPrintTests) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 346, in test_exceptions > ''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_frames (__main__.PrettyPrintTests) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 607, in test_frames > cmds_after_breakpoint=['print (PyFrameObject*)(((PyCodeObject*)op)->co_zombieframe)'] > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'No symbol "PyFrameObject" in current context.' != '' > >====================================================================== >FAIL: test_frozensets (__main__.PrettyPrintTests) >Verify the pretty-printing of frozensets >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 329, in test_frozensets > self.assertGdbRepr(frozenset()) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_int (__main__.PrettyPrintTests) >Verify the pretty-printing of various "int" values >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 241, in test_int > self.assertGdbRepr(42) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_lists (__main__.PrettyPrintTests) >Verify the pretty-printing of lists >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 268, in test_lists > self.assertGdbRepr([]) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_long (__main__.PrettyPrintTests) >Verify the pretty-printing of various "long" values >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 249, in test_long > self.assertGdbRepr(0L) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_modern_class (__main__.PrettyPrintTests) >Verify the pretty-printing of new-style class instances >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 380, in test_modern_class > print foo''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_selfreferential_dict (__main__.PrettyPrintTests) >Ensure that a reference loop involving a dict doesn't lead proxyval >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 516, in test_selfreferential_dict > self.get_gdb_repr("a = {} ; b = {'bar':a} ; a['foo'] = b ; print a") > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_selfreferential_list (__main__.PrettyPrintTests) >Ensure that a reference loop involving a list doesn't lead proxyval >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 503, in test_selfreferential_list > self.get_gdb_repr("a = [3, 4, 5] ; a.append(a) ; print a") > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_selfreferential_new_style_instance (__main__.PrettyPrintTests) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 540, in test_selfreferential_new_style_instance > print foo''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_selfreferential_old_style_instance (__main__.PrettyPrintTests) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 527, in test_selfreferential_old_style_instance > print foo''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_sets (__main__.PrettyPrintTests) >Verify the pretty-printing of sets >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 310, in test_sets > self.assertGdbRepr(set()) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_singletons (__main__.PrettyPrintTests) >Verify the pretty-printing of True, False and None >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 256, in test_singletons > self.assertGdbRepr(True) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_strings (__main__.PrettyPrintTests) >Verify the pretty-printing of strings >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 273, in test_strings > self.assertGdbRepr('') > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_subclassing_list (__main__.PrettyPrintTests) >Verify the pretty-printing of an instance of a list subclass >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 393, in test_subclassing_list > print foo''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_subclassing_tuple (__main__.PrettyPrintTests) >Verify the pretty-printing of an instance of a tuple subclass >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 407, in test_subclassing_tuple > print foo''') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_truncation (__main__.PrettyPrintTests) >Verify that very long output is truncated >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 562, in test_truncation > gdb_repr, gdb_output = self.get_gdb_repr('print range(1000)') > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_tuples (__main__.PrettyPrintTests) >Verify the pretty-printing of tuples >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 280, in test_tuples > self.assertGdbRepr(tuple()) > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_unicode (__main__.PrettyPrintTests) >Verify the pretty-printing of unicode values >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 287, in test_unicode > self.assertGdbRepr(u'') > File "test_gdb.py", line 236, in assertGdbRepr > cmds_after_breakpoint) > File "test_gdb.py", line 212, in get_gdb_repr > self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output)) >AssertionError: Unexpected gdb output: 'Breakpoint 1 (PyObject_Print) pending.\n[Thread debugging using libthread_db enabled]\nUsing host libthread_db library "/lib64/libthread_db.so.1".\n\nBreakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0\n#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0\n#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0\n#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0\n#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0\n#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0\n#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0\n#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0\n#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0\n#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6\n#10 0x00000000004006f1 in _start ()\n' >Breakpoint 1 (PyObject_Print) pending. >[Thread debugging using libthread_db enabled] >Using host libthread_db library "/lib64/libthread_db.so.1". > >Breakpoint 1, 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#0 0x0000003961882ed0 in PyObject_Print () from /lib64/libpython2.7.so.1.0 >#1 0x00000039618668f8 in PyFile_WriteObject () from /lib64/libpython2.7.so.1.0 >#2 0x00000039618daefd in PyEval_EvalFrameEx () from /lib64/libpython2.7.so.1.0 >#3 0x00000039618ddb1f in PyEval_EvalCodeEx () from /lib64/libpython2.7.so.1.0 >#4 0x00000039618ddbf2 in PyEval_EvalCode () from /lib64/libpython2.7.so.1.0 >#5 0x00000039618f6b9a in ?? () from /lib64/libpython2.7.so.1.0 >#6 0x00000039618f7768 in PyRun_StringFlags () from /lib64/libpython2.7.so.1.0 >#7 0x00000039618f827b in PyRun_SimpleStringFlags () from /lib64/libpython2.7.so.1.0 >#8 0x0000003961909388 in Py_Main () from /lib64/libpython2.7.so.1.0 >#9 0x0000003960021735 in __libc_start_main () from /lib64/libc.so.6 >#10 0x00000000004006f1 in _start () > > >====================================================================== >FAIL: test_down_at_bottom (__main__.StackNavigationTests) >Verify handling of "py-down" at the bottom of the stack >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 674, in test_down_at_bottom > cmds_after_breakpoint=['py-down']) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'Undefined command: "py-down". Try "help".' != '' > >====================================================================== >FAIL: test_up_at_top (__main__.StackNavigationTests) >Verify handling of "py-up" at the top of the stack >---------------------------------------------------------------------- >Traceback (most recent call last): > File "test_gdb.py", line 682, in test_up_at_top > cmds_after_breakpoint=['py-up'] * 4) > File "test_gdb.py", line 189, in get_stack_trace > self.assertEqual(err, '') >AssertionError: 'Undefined command: "py-up". Try "help".\nUndefined command: "py-up". Try "help".\nUndefined command: "py-up". Try "help".\nUndefined command: "py-up". Try "help".' != '' > >---------------------------------------------------------------------- >Ran 45 tests in 12.866s > >FAILED (failures=32, skipped=12) >Traceback (most recent call last): > File "test_gdb.py", line 781, in <module> > test_main() > File "test_gdb.py", line 777, in test_main > PyLocalsTests > File "/usr/lib64/python2.7/test/test_support.py", line 1094, in run_unittest > _run_suite(suite) > File "/usr/lib64/python2.7/test/test_support.py", line 1077, in _run_suite > raise TestFailed(err) >test.test_support.TestFailed: multiple errors occurred
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 856672
:
612131
| 612132