This is the mail archive of the archer@sourceware.org mailing list for the Archer 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]

Re: [Keith Seitz] Re: [tools-team] Status 2008-09-01


On Wed, 02 Sep 2009 21:44:06 +0200, Tom Tromey wrote:
> From: Keith Seitz <keiths@redhat.com>
[...]
> This one is a little less cut-n-dry IMO, but it should still "work":
> (gdb) p obj->num_
> There is no member or method named num_.

Just this is due the wrong printing defaults:

(gdb) p obj->num_
There is no member or method named num_.
(gdb) set print object on 
(gdb) p obj->num_
$1 = 2

One should change this (+some other related options in `user_print_options')
and in some way fix the testsuite regressions afterwards by one of:
(a) Updating the specific testsuite expectations by hand.
(b) Making the "old" options default globally (deprecated)
(c) Making the "old" options default only in the current testcases.


Regards,
Jan


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