From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21647 invoked by alias); 9 Oct 2013 12:48:10 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 21635 invoked by uid 89); 9 Oct 2013 12:48:10 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS,UNPARSEABLE_RELAY autolearn=ham version=3.3.2 X-HELO: userp1040.oracle.com Received: from userp1040.oracle.com (HELO userp1040.oracle.com) (156.151.31.81) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 09 Oct 2013 12:48:07 +0000 Received: from ucsinet22.oracle.com (ucsinet22.oracle.com [156.151.31.94]) by userp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r99Cm5k3015688 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 9 Oct 2013 12:48:05 GMT Received: from userz7021.oracle.com (userz7021.oracle.com [156.151.31.85]) by ucsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r99Cm4go004019 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 9 Oct 2013 12:48:04 GMT Received: from abhmt109.oracle.com (abhmt109.oracle.com [141.146.116.61]) by userz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r99Cm4Q8025765 for ; Wed, 9 Oct 2013 12:48:04 GMT Received: from termi.oracle.com (/10.175.45.62) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 09 Oct 2013 05:48:03 -0700 From: jose.marchesi@oracle.com (Jose E. Marchesi) To: gdb-patches@sourceware.org Subject: [PATCH] testsuite: skip morestack.exp in sparc targets Date: Wed, 09 Oct 2013 12:48:00 -0000 Message-ID: <87d2nebocs.fsf@oracle.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2013-10/txt/msg00266.txt.bz2 2013-10-09 Jose E. Marchesi * gdb.base/morestack.exp: Skip test in sparc targets, where -fsplit-stack is not supported. Index: testsuite/gdb.base/morestack.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/morestack.exp,v retrieving revision 1.5 diff -u -r1.5 morestack.exp --- testsuite/gdb.base/morestack.exp 27 Jun 2013 18:51:31 -0000 1.5 +++ testsuite/gdb.base/morestack.exp 9 Oct 2013 12:43:55 -0000 @@ -13,6 +13,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# This test does not work on targets for which -fsplit-stack is not +# supported. +if { [istarget sparc*-*-linux-gnu] } { + return +} + if [get_compiler_info] { return -1 }