From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22909 invoked by alias); 23 Feb 2003 20:48:16 -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 22900 invoked from network); 23 Feb 2003 20:48:16 -0000 Received: from unknown (HELO kraid.nerim.net) (62.4.16.102) by 172.16.49.205 with SMTP; 23 Feb 2003 20:48:16 -0000 Received: from nerim.fr (stcarrez.net1.nerim.net [62.212.108.40]) by kraid.nerim.net (Postfix) with ESMTP id 9BCAC40EFD; Sun, 23 Feb 2003 21:48:13 +0100 (CET) Message-ID: <3E59338E.8010109@nerim.fr> Date: Sun, 23 Feb 2003 20:48:00 -0000 From: Stephane Carrez User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3 X-Accept-Language: en-us MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [RFA]: Don't execute gdb.mi/mi-syn-frame.exp when gdb,nosignals Content-Type: multipart/mixed; boundary="------------050200010101070403020100" X-SW-Source: 2003-02/txt/msg00558.txt.bz2 This is a multi-part message in MIME format. --------------050200010101070403020100 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 381 Hi! The test mi-syn-frame.exp uses signals (signal, alarm, sleep, SIGALRM) but signals are not always available. Can you approve this patch to test gdb,nosignals and avoid executing this test? (see gdb.base/signals.exp which does the same) Thanks, Stephane 2003-02-23 Stephane Carrez * mi-syn-frame.exp: Don't run this test when gdb,nosignals is set. --------------050200010101070403020100 Content-Type: text/plain; name="mi-syn-frame.exp.diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mi-syn-frame.exp.diffs" Content-length: 910 Index: testsuite/gdb.mi/mi-syn-frame.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-syn-frame.exp,v retrieving revision 1.1 diff -u -p -r1.1 mi-syn-frame.exp --- testsuite/gdb.mi/mi-syn-frame.exp 2 Feb 2003 05:51:09 -0000 1.1 +++ testsuite/gdb.mi/mi-syn-frame.exp 23 Feb 2003 20:43:45 -0000 @@ -1,4 +1,4 @@ -# Copyright 2002 Free Software Foundation, Inc. +# Copyright 2002, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,6 +19,11 @@ # Test MI output with synthetic frames on the stack (call dummies, # signal handlers). + +if [target_info exists gdb,nosignals] { + verbose "Skipping mi-syn-frame.exp because of nosignals." + continue +} load_lib mi-support.exp set MIFLAGS "-i=mi" --------------050200010101070403020100--