This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug python/11380] print formats (/FMT) do not invoke Python pretty printers


https://sourceware.org/bugzilla/show_bug.cgi?id=11380

dje at google dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |dje at google dot com
         Resolution|---                         |WORKSFORME

--- Comment #1 from dje at google dot com ---
I guess this has been fixed since, because I can't repro this.
[btw, I'm assuming there's a typo in the repro instructions:
Is it possible the first "p /f the_semaphore->Object.id" was actually "p
the_semaphore.Object" ?]

>From the gdb build tree, after running the py-prettyprint.exp testcase:

bash$ make run
(gdb) file testsuite/gdb.python/py-prettyprint
(gdb) source ../src/gdb/testsuite/gdb.python/py-prettyprint.py
(gdb) start
[...]
264       string x = make_string ("this is x");
(gdb) n
265       zzz_type c = make_container ("container");
(gdb) 
266       zzz_type c2 = make_container ("container2");
(gdb) 
267       const struct string_repr cstring = { { "const string" } };
(gdb) 
277       nstype.elements = narray;
(gdb) 
278       nstype.len = 0;
(gdb) 
280       me.s = "blah";
(gdb) 
282       init_ss(&ss, 1, 2);
(gdb) 
283       init_ss(ssa+0, 3, 4);
(gdb) 
284       init_ss(ssa+1, 5, 6);
(gdb) 
285       memset (&nullstr, 0, sizeof nullstr);
(gdb) p ss
$1 = a=< a=<1> b=<0x7fffffffe670>> b=< a=<2> b=<0x7fffffffe680>>
(gdb) p/x ss
$2 = a=< a=<1> b=<0x7fffffffe670>> b=< a=<2> b=<0x7fffffffe680>>
(gdb) p/r ss
$3 = {
  a = {
    a = 0x1,
    b = 0x7fffffffe670
  },
  b = {
    a = 0x2,
    b = 0x7fffffffe680
  }
}
(gdb)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]