From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26469 invoked by alias); 6 Jan 2002 06:34:23 -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 26426 invoked from network); 6 Jan 2002 06:34:22 -0000 Received: from unknown (HELO fred.ninemoons.com) (64.232.230.104) by sources.redhat.com with SMTP; 6 Jan 2002 06:34:22 -0000 Received: (from fnf@localhost) by fred.ninemoons.com (8.11.6/8.11.6) id g066WrV00549; Sat, 5 Jan 2002 23:32:53 -0700 From: Fred Fish Message-Id: <200201060632.g066WrV00549@fred.ninemoons.com> Subject: [RFA] Accept simulator exit message To: gdb-patches@sources.redhat.com Date: Sat, 05 Jan 2002 22:34:00 -0000 Cc: fnf@redhat.com Reply-To: fnf@redhat.com X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-01/txt/msg00084.txt.bz2 Accept the message we get when running the a2-run.exp test with the simulator. 2002-01-05 Fred Fish * gdb.base/a2-run.exp: When run in the simulator, the exit message is slightly different so accept that variation. Index: gdb.base/a2-run.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/a2-run.exp,v retrieving revision 1.3 diff -u -p -r1.3 a2-run.exp --- a2-run.exp 2001/03/06 08:21:50 1.3 +++ a2-run.exp 2002/01/06 06:30:54 @@ -56,6 +56,7 @@ gdb_load ${binfile} # Run with no arguments. # On VxWorks this justs make sure the program was run. +# When run in the simulator, we get a slightly different exit message. gdb_run_cmd if [istarget "*-*-vxworks*"] then { @@ -78,6 +79,9 @@ if [istarget "*-*-vxworks*"] then { } else { gdb_expect { -re ".*usage: factorial .*Program exited with code 01.*$gdb_prompt $" { + pass "run \"$testfile\" with no args" + } + -re ".*usage: factorial .*Program exited normally.*$gdb_prompt $" { pass "run \"$testfile\" with no args" } -re ".*$gdb_prompt $" {