From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28805 invoked by alias); 8 Apr 2011 15:07:42 -0000 Received: (qmail 28795 invoked by uid 22791); 8 Apr 2011 15:07:41 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 08 Apr 2011 15:07:36 +0000 Received: (qmail 5004 invoked from network); 8 Apr 2011 15:07:35 -0000 Received: from unknown (HELO ?192.168.1.5?) (janisjo@127.0.0.2) by mail.codesourcery.com with ESMTPA; 8 Apr 2011 15:07:35 -0000 Message-ID: <4D9F24B2.5040001@codesourcery.com> Date: Fri, 08 Apr 2011 15:07:00 -0000 From: Janis Johnson User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [testsuite] fix to gcc.target/arm/pr43698.c Content-Type: multipart/mixed; boundary="------------060108060909050604030904" Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-04/txt/msg00641.txt.bz2 This is a multi-part message in MIME format. --------------060108060909050604030904 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 511 Test gcc.target/arm/pr43698.c specifies -march=armv7-a and fails execution for multilibs whose hardware or simulator doesn't support that architecture. The test doesn't depend on that option, and without it will occasionally run for such a target anyway. This patch removes the option, letting it pass for all multilibs. I don't yet have an FSF copyright assignment (it's currently in the hands of the FSF) but this patch is small enough to not require one. If this is OK someone else will need to appy it. --------------060108060909050604030904 Content-Type: text/plain; name="gcc-20110407-1" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="gcc-20110407-1" Content-length: 492 2011-04-08 Janis Johnson * gcc.target/arm/pr43698.c: Remove -march option. Index: gcc/testsuite/gcc.target/arm/pr43698.c =================================================================== --- gcc/testsuite/gcc.target/arm/pr43698.c (revision 320350) +++ gcc/testsuite/gcc.target/arm/pr43698.c (working copy) @@ -1,5 +1,5 @@ /* { dg-do run } */ -/* { dg-options "-Os -march=armv7-a" } */ +/* { dg-options "-Os" } */ #include #include --------------060108060909050604030904--