From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23194 invoked by alias); 2 Sep 2009 21:44:07 -0000 Mailing-List: contact archer-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: List-Id: Received: (qmail 23184 invoked by uid 22791); 2 Sep 2009 21:44:06 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Date: Wed, 02 Sep 2009 21:44:00 -0000 From: Jan Kratochvil To: Project Archer Cc: Chris Moller , Keith Seitz Subject: Re: [Keith Seitz] Re: [tools-team] Status 2008-09-01 Message-ID: <20090902214348.GA32564@host0.dyn.jankratochvil.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.19 (2009-01-05) X-SW-Source: 2009-q3/txt/msg00168.txt.bz2 On Wed, 02 Sep 2009 21:44:06 +0200, Tom Tromey wrote: > From: Keith Seitz [...] > 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