From patchwork Fri Aug 24 14:32:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jack Howarth X-Patchwork-Id: 179855 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]) by ozlabs.org (Postfix) with SMTP id 89CCF2C00E7 for ; Sat, 25 Aug 2012 00:32:56 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1346423576; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition:User-Agent:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=Ml1VenH5aC8hymXPRwlAgSA2jc0=; b=FAjcOdiwbxgwXi8 uPoGMA7KedZfrjzhD6IFiUl8pGMv00CJeiNRNrYd0olpHrA0gVXxO83fuaX3X6jA rVaL4kHE78n5DR/xWfbUiyPrer77R1J2yYfVe/jXBqxnFLJGmW8xjRoiVwI2ehpO FVoawXZBX77ok4gzF7nL4Ob63QKE= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type:Content-Disposition:User-Agent:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=iX3NixjKw4E+Hj+9ERTQN81A6DupNKTSgSNNBusAnxDHciCt0am/nYbzS/L3UO O6gFdRgNXaqo5EIVm7jJJk4eljnDfVHLY00910RhFiKlSn8zIjFf9IrC4UelAUXb jZRysB1WuU/7poIq5qocfzCPy6ft2IGPIDH3L4adfilSg=; Received: (qmail 4864 invoked by alias); 24 Aug 2012 14:32:50 -0000 Received: (qmail 4853 invoked by uid 22791); 24 Aug 2012 14:32:49 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from bromo.med.uc.edu (HELO bromo.med.uc.edu) (129.137.3.146) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 24 Aug 2012 14:32:30 +0000 Received: from bromo.med.uc.edu (localhost.localdomain [127.0.0.1]) by bromo.med.uc.edu (Postfix) with ESMTP id 96A23B004B; Fri, 24 Aug 2012 10:32:29 -0400 (EDT) Received: (from howarth@localhost) by bromo.med.uc.edu (8.14.3/8.14.3/Submit) id q7OEWTe7015774; Fri, 24 Aug 2012 10:32:29 -0400 Date: Fri, 24 Aug 2012 10:32:29 -0400 From: Jack Howarth To: gcc-patches@gcc.gnu.org Cc: mikestump@comcast.net, iain@codesourcery.com, rth@gcc.gnu.org Subject: [PATCH][Revised] skip gcc.target/i386/asm-dialect-1.c on darwin Message-ID: <20120824143229.GA15772@bromo.med.uc.edu> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) 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 Currently the new gcc.target/i386/asm-dialect-1.c testcase is failing on darwin due the absence of support for -masm=intel on that target. The attached patch skips this test on darwin. Tested on x86_64-apple-darwin12... http://gcc.gnu.org/ml/gcc-testresults/2012-08/msg02042.html Okay for gcc trunk? Jack 2012-08-24 Jack Howarth PR target/54255 * gcc.target/i386/asm-dialect-1.c: Skip on darwin. Index: gcc/testsuite/gcc.target/i386/asm-dialect-1.c warth@bromo ~]$ vi =================================================================== --- gcc/testsuite/gcc.target/i386/asm-dialect-1.c (revision 190647) +++ gcc/testsuite/gcc.target/i386/asm-dialect-1.c (working copy) @@ -1,4 +1,5 @@ /* { dg-options "-masm=intel" } */ +/* { dg-skip-if "No support for -masm=intel" { *-*-darwin* } { "*" } { "" } } */ extern void abort (void);