From patchwork Sat Jul 13 21:24:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Iain Sandoe X-Patchwork-Id: 1131656 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-505057-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=sandoe.co.uk Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="YR6sSNLd"; dkim-atps=neutral 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 45mNBM0PbFz9sDB for ; Sun, 14 Jul 2019 07:25:40 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:content-transfer-encoding:mime-version:subject :message-id:date:cc:to; q=dns; s=default; b=D7uU5z1Cq9SpEXwb/YDs d/NStBlirmfiPaJ0K8NSOBwUQKGqfWIJ2I1GBAovjlMjzOT+2SKf+h4gKvKJW+PC AS/iE3xd641nk93FHmlP2OkXgSIu57ZPkxPWZL7kwaFKYvX7yMCC5SeFDlnzdtsS qhxTCSnpxm4NC9t3a/qSfNs= 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:from :content-type:content-transfer-encoding:mime-version:subject :message-id:date:cc:to; s=default; bh=MT25haNk2sm8HWtaeT0agA505c 0=; b=YR6sSNLdCHuAOSKWOfm8xGyYjmdKgpuzeLHSbqvQOZMOeZD9KA8RZHawpK Sj6JfVjMU5KeAsShx/H+W7ITVN7kDnROcGSRmwa2IObZsVsfIsnKL7/wKCOcMoXm HDagBny/9kOHqIt909XgX3AdDEOl/kUV4S21Fc3+OVTdrCfS8= Received: (qmail 56234 invoked by alias); 13 Jul 2019 21:25:31 -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 56224 invoked by uid 89); 13 Jul 2019 21:25:30 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_COUK, RCVD_IN_DNSWL_NONE, RCVD_IN_SBL_CSS, RCVD_IN_SORBS_WEB autolearn=ham version=3.3.1 spammy=D*sandoe.co.uk, U*iain, Darwin, iainsandoecouk X-HELO: smtp1.wavenetuk.net Received: from smtp.wavenetuk.net (HELO smtp1.wavenetuk.net) (195.26.36.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Jul 2019 21:25:29 +0000 Received: from [192.168.21.126] (unknown [81.144.254.34]) by smtp1.wavenetuk.net (Postfix) with ESMTPA id 1200D120133F; Sat, 13 Jul 2019 22:25:26 +0100 (BST) From: Iain Sandoe Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: [Darwin, PPC, testsuite, committed] Require stabs support for a test. Message-Id: <4083BDB4-629A-4BD2-AA75-CDEC346D5FF8@sandoe.co.uk> Date: Sat, 13 Jul 2019 22:24:42 +0100 Cc: Segher Boessenkool To: GCC Patches Another in my queue of minor test fixups. The test fails if the assembler doesn't support stabs (and I have at least one assembler under test that doesn’t). Solution is to require stabs support tested on powerpc-darwin9 applied to mainline thanks Iain 2019-07-13 Iain Sandoe * gcc.target/powerpc/stabs-attrib-vect-darwin.c: Require stabs support. diff --git a/gcc/testsuite/gcc.target/powerpc/stabs-attrib-vect-darwin.c b/gcc/testsuite/gcc.target/powerpc/stabs-attrib-vect-darwin.c index 3c52287..5c7acf1 100644 --- a/gcc/testsuite/gcc.target/powerpc/stabs-attrib-vect-darwin.c +++ b/gcc/testsuite/gcc.target/powerpc/stabs-attrib-vect-darwin.c @@ -1,5 +1,6 @@ /* Test Attribute Vector associated with vector type stabs. */ /* { dg-do compile { target powerpc*-*-darwin* } } */ +/* { dg-require-effective-target stabs } */ /* { dg-options "-gstabs+ -fno-eliminate-unused-debug-types -faltivec" } */