From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27938 invoked by alias); 7 Feb 2004 23:26:50 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 27930 invoked from network); 7 Feb 2004 23:26:49 -0000 Received: from unknown (HELO localhost.redhat.com) (66.30.197.194) by sources.redhat.com with SMTP; 7 Feb 2004 23:26:49 -0000 Received: by localhost.redhat.com (Postfix, from userid 469) id 905AB1A4484; Sat, 7 Feb 2004 18:23:30 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16421.29554.509636.16432@localhost.redhat.com> Date: Sat, 07 Feb 2004 23:26:00 -0000 To: mec.gnu@mindspring.com (Michael Elizabeth Chastain) Cc: ezannoni@redhat.com, gdb-patches@sources.redhat.com Subject: Re: [PATCH] unify objfile obstacks (4/4) In-Reply-To: <20040207020544.50B874B364@berman.michael-chastain.com> References: <20040207020544.50B874B364@berman.michael-chastain.com> X-SW-Source: 2004-02/txt/msg00159.txt.bz2 Michael Elizabeth Chastain writes: > Hi Elena, > > Could you please keep the old pattern in there too? > sure. here is what I checked in: Index: maint.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/maint.exp,v retrieving revision 1.22 diff -u -p -r1.22 maint.exp --- maint.exp 17 Dec 2003 05:43:46 -0000 1.22 +++ maint.exp 7 Feb 2004 23:20:40 -0000 @@ -191,6 +191,11 @@ gdb_expect { send_gdb "maint print statistics\n" gdb_expect { -re "Statistics for.*break.*Number of \"minimal\" symbols read.*Number of \"partial\" symbols read.*Number of \"types\" defined.*Number of psym tables \\(not yet expanded\\).*Number of symbol tables.*Number of symbol tables with line tables.*Number of symbol tables with blockvectors.*Total memory used for psymbol obstack.*Total memory used for psymbol cache.*Total memory used for symbol obstack.*Total memory used for type obstack.*$gdb_prompt $"\ + { + # Old output for gdb 6.0 and earlier + pass "maint print statistics" + } + -re "Statistics for.*break.*Number of \"minimal\" symbols read.*Number of \"partial\" symbols read.*Number of \"types\" defined.*Number of psym tables \\(not yet expanded\\).*Number of symbol tables.*Number of symbol tables with line tables.*Number of symbol tables with blockvectors.*Total memory used for objfile obstack.*Total memory used for psymbol cache.*Total memory used for macro cache.*$gdb_prompt $"\ { pass "maint print statistics" } -re ".*$gdb_prompt $" { fail "maint print statistics" } timeout { fail "(timeout) maint print statistics" }