From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4300 invoked by alias); 22 Jun 2002 22:24:31 -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 4290 invoked from network); 22 Jun 2002 22:24:29 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 22 Jun 2002 22:24:29 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id F21ED3DFE; Sat, 22 Jun 2002 18:24:28 -0400 (EDT) Message-ID: <3D14F91C.8030403@cygnus.com> Date: Sat, 22 Jun 2002 15:24:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020613 X-Accept-Language: en-us, en MIME-Version: 1.0 To: tromey@redhat.com Cc: gdb-patches@sources.redhat.com Subject: [patch] Update selftest.exp; Was: RFA: start of i18n References: <87elf0wnp2.fsf@fleche.redhat.com> Content-Type: multipart/mixed; boundary="------------040908030403080700070001" X-SW-Source: 2002-06/txt/msg00473.txt.bz2 This is a multi-part message in MIME format. --------------040908030403080700070001 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 169 > This causes no test suite regressions on Red Hat Linux 7.3. Tom, Just FYI, I ended up committing the attached - fixed a regression in selftest.exp. enjoy, Andrew --------------040908030403080700070001 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1434 2002-06-22 Andrew Cagney * gdb.base/selftest.exp (do_stes_and_next): Skip calls to setlocale, bindtextdomain and textdomain. Index: gdb.base/selftest.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/selftest.exp,v retrieving revision 1.3 diff -u -r1.3 selftest.exp --- gdb.base/selftest.exp 7 Jan 2002 19:20:09 -0000 1.3 +++ gdb.base/selftest.exp 22 Jun 2002 22:10:23 -0000 @@ -52,7 +52,7 @@ gdb_reinitialize_dir $srcdir/.. - for {set count 0} {$count < 22} {incr count} { + for {set count 0} {$count < 26} {incr count} { send_gdb "list\n" gdb_expect { -re ".*context = data.*$gdb_prompt $" { @@ -141,6 +141,22 @@ } -re ".*dirarg = .* xmalloc.*$gdb_prompt $" { return + } + -re ".*setlocale .LC_MESSAGES,.*$gdb_prompt $" { + set description "next over setlocale LC_MESSAGES" + set command "next" + } + -re ".*setlocale .LC_CTYPE,.*$gdb_prompt $" { + set description "next over setlocale LC_CTYPE" + set command "next" + } + -re ".*bindtextdomain .PACKAGE, LOCALEDIR.;.*$gdb_prompt $" { + set description "next over bindtextdomain" + set command "next" + } + -re ".*textdomain .PACKAGE.;.*$gdb_prompt $" { + set description "next over textdomain PACKAGE" + set command "next" } -re "\[ \t\]+\{\r\n$gdb_prompt $" { setup_xfail "mips-*-irix5*" --------------040908030403080700070001--