From patchwork Mon Aug 11 21:58:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janis Johnson X-Patchwork-Id: 379148 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E4BA2140132 for ; Tue, 12 Aug 2014 07:58:15 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:reply-to:mime-version:to:subject :content-type; q=dns; s=default; b=parjNQR43eJzbQhPy3Boxqi9HxtY8 VmroZ1vpO2h2NychDeYMznAGHKc3XEO3aQCF25memyBIeTRiECnYeY42C71ycEpx eBvKt89Htv61jxaaCtM1YNDQQaWupM9pzVfI5FKMVO9UBy2ya2qkW0coCOfEZOFK oiwjpXh5SPNZEk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:reply-to:mime-version:to:subject :content-type; s=default; bh=GQdkCqIlhc7NBUJHzTOhyTt775Q=; b=jLR +eAl4e9F1Ek4LnHoP/sb8wjMveATb//01AWlEf2SSF7h15oJLzKxEVf7nIkxMuEG 5h0hUSnrjIIXC4oD9jRyQbSiT5uJeOg82yx2PTv8wfUnA6JzPHMkPn/AX6Zvlngb NABEY57IT6P0nJ3EUPRJIpI+zVkq2ysrGVudemRo= Received: (qmail 23103 invoked by alias); 11 Aug 2014 21:58:08 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 23090 invoked by uid 89); 11 Aug 2014 21:58:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 11 Aug 2014 21:58:06 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1XGxbN-0000ru-5o from Janis_Johnson@mentor.com for gcc-patches@gcc.gnu.org; Mon, 11 Aug 2014 14:58:01 -0700 Received: from SVR-ORW-FEM-05.mgc.mentorg.com ([147.34.97.43]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 11 Aug 2014 14:58:00 -0700 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-05.mgc.mentorg.com (147.34.97.43) with Microsoft SMTP Server id 14.2.247.3; Mon, 11 Aug 2014 14:58:00 -0700 Message-ID: <53E93C6C.30509@mentor.com> Date: Mon, 11 Aug 2014 14:58:04 -0700 From: Janis Johnson Reply-To: User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" Subject: [testsuite patch] fix ARM tests with options that conflict with thumb1 Two tests in gcc.target/arm add options that conflict with thumb1 multilib flags; skip them. Tested with arm-none-linux-gnu for mainline and 4.9 for a variety of multilib flags. OK for mainline and 4.9 branch? Janis 2014-08-11 Janis Johnson * gcc.target/arm/pr48784.c: Skip for thumb1 multilib. * gcc.target/arm/pr59985.c: Likewise. Index: gcc/testsuite/gcc.target/arm/pr58784.c =================================================================== --- gcc/testsuite/gcc.target/arm/pr58784.c (revision 437379) +++ gcc/testsuite/gcc.target/arm/pr58784.c (working copy) @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-skip-if "incompatible options" { arm_thumb1 } { "*" } { "" } } */ /* { dg-options "-march=armv7-a -mfloat-abi=hard -mfpu=neon -marm -O2" } */ typedef struct __attribute__ ((__packed__)) Index: gcc/testsuite/gcc.target/arm/pr59985.C =================================================================== --- gcc/testsuite/gcc.target/arm/pr59985.C (revision 437379) +++ gcc/testsuite/gcc.target/arm/pr59985.C (working copy) @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-skip-if "incompatible options" { arm_thumb1 } { "*" } { "" } } */ /* { dg-options "-g -fcompare-debug -O2 -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -mfloat-abi=hard" } */ extern void *f1 (unsigned long, unsigned long);