From patchwork Mon Jul 8 19:48:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janis Johnson X-Patchwork-Id: 257599 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 47E7D2C01FC for ; Tue, 9 Jul 2013 05:48:48 +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=I1uzHi97+85UzWgqGHCKQzYoTKIM7 nRazcfSB6Ox3Hl5Ks0puHf5HrdTvm33KUKNbT2r50yqKg1KUFu7KV6ewurctXzSa A7/IIWLCymIoo/mvAC8oMPANQVR3qlXKnhWhPSE3BDjghFFV32b+e53MAieiKZB4 qwtVJ9foBwXkpI= 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=DBA2oQjqjUWfv2LfeWbDhKFMfVE=; b=L0n lfEgBAP8OQM7lGCBG5b45csyWpZXKZw2ZLHY8c/k+DDmAMNh7J/NsxouWQLAQzAT P5S76bat9Itw+grU1bwNF3WDVKRtnAE/JBzl4fAhfZl7QPwoZjrKznbw6yvWqSCz rUBM+4g59EFbnBBiUQnnxuQlaso2BuU/0DiteynU= Received: (qmail 24086 invoked by alias); 8 Jul 2013 19:48:42 -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 23968 invoked by uid 89); 8 Jul 2013 19:48:40 -0000 X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL autolearn=ham version=3.3.1 Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 08 Jul 2013 19:48:40 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1UwHQL-0007Nw-W8 from Janis_Johnson@mentor.com ; Mon, 08 Jul 2013 12:48:38 -0700 Received: from SVR-ORW-FEM-03.mgc.mentorg.com ([147.34.97.39]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 8 Jul 2013 12:48:38 -0700 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.2.247.3; Mon, 8 Jul 2013 12:48:37 -0700 Message-ID: <51DB179D.3030204@mentor.com> Date: Mon, 8 Jul 2013 12:48:45 -0700 From: Janis Johnson Reply-To: User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" , Subject: [testsuite] skip gcc.target/powerpc-tfmode_off.c for eabi X-Virus-Found: No Test gcc.target/powerpc-tfmode_off.c fails for powerpc-eabi* targets, which do not support TFmode. This patch skips the test for powerpc-*-eabi*. OK for mainline and the 4.8 branch? Janis 2013-07-08 Janis Johnson * gcc.target/powerpc/tfmode_off.c: Skip for EABI targets. Index: gcc.target/powerpc/tfmode_off.c =================================================================== --- gcc.target/powerpc/tfmode_off.c (revision 200621) +++ gcc.target/powerpc/tfmode_off.c (working copy) @@ -1,5 +1,6 @@ /* { dg-do assemble } */ /* { dg-skip-if "" { powerpc-ibm-aix* } { "*" } { "" } } */ +/* { dg-skip-if "" { powerpc-*-eabi* } { "*" } { "" } } */ /* { dg-options "-O2 -fno-align-functions -mtraceback=no -save-temps" } */ typedef float TFmode __attribute__ ((mode (TF)));