From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27805 invoked by alias); 18 Jul 2002 23:53:30 -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 27793 invoked from network); 18 Jul 2002 23:53:30 -0000 Received: from unknown (HELO zwingli.cygnus.com) (208.245.165.35) by sources.redhat.com with SMTP; 18 Jul 2002 23:53:30 -0000 Received: by zwingli.cygnus.com (Postfix, from userid 442) id 010B55EA11; Thu, 18 Jul 2002 18:53:28 -0500 (EST) To: Andrew Cagney Cc: Fernando Nasser , gdb-patches@sources.redhat.com Subject: Re: RFA: properly skip interrupts.exp References: <20020301231041.DB0E05E9DE@zwingli.cygnus.com> <3D2F625A.9000300@ges.redhat.com> From: Jim Blandy Date: Thu, 18 Jul 2002 17:02:00 -0000 In-Reply-To: <3D2F625A.9000300@ges.redhat.com> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-07/txt/msg00408.txt.bz2 Committed, thanks. Andrew Cagney writes: > > 2002-03-01 Jim Blandy > >> * gdb.base/interrupt.exp: Correct logic for skipping tests on > >> targets that don't support interrupts. > >> > Yep, ok (this one I'm sure of). > > Andrew > > From: Jim Blandy > Subject: Re: RFA: properly skip interrupts.exp > To: gdb-patches@sources.redhat.com > Date: 20 Jun 2002 13:25:14 -0500 > > > Ping to testsuite maintainer: this patch needs review. > > Jim Blandy writes: > > > 2002-03-01 Jim Blandy > > > > * gdb.base/interrupt.exp: Correct logic for skipping tests on > > targets that don't support interrupts. > > > > Index: gdb/testsuite/gdb.base/interrupt.exp > > =================================================================== > > RCS file: /cvs/cvsfiles/devo/gdb/testsuite/gdb.base/interrupt.exp,v > > retrieving revision 1.36 > > diff -c -r1.36 interrupt.exp > > *** gdb/testsuite/gdb.base/interrupt.exp 2001/10/31 18:28:27 1.36 > > --- gdb/testsuite/gdb.base/interrupt.exp 2002/03/01 22:24:08 > > *************** > > *** 18,28 **** > > # Please email any bugs, comments, and/or additions to this file to: > > # bug-gdb@prep.ai.mit.edu > > > > ! if [host_info exists name] { > > ! if [board_info host exists gdb,nointerrupts] { > > ! verbose "Skipping interrupt.exp because of nointerrupts." > > ! continue > > ! } > > } > > > > if [target_info exists gdb,noinferiorio] { > > --- 18,26 ---- > > # Please email any bugs, comments, and/or additions to this file to: > > # bug-gdb@prep.ai.mit.edu > > > > ! if [target_info exists gdb,nointerrupts] { > > ! verbose "Skipping interrupt.exp because of nointerrupts." > > ! continue > > } > > > > if [target_info exists gdb,noinferiorio] { > > ----------