From patchwork Thu Dec 1 10:25:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Georg-Johann Lay X-Patchwork-Id: 701444 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 3tTthr3Dnyz9t0G for ; Thu, 1 Dec 2016 21:25:31 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="jJOmWiOW"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=DLbbOVjf5VpNOYhl M49f6ljOFX0CEFT76EH3XioX07voBuacGDOjUEsyISP+kK6PDOgVVRbF77cvLEmQ Vr9sBQVK2FzZ8237AARTsPZ8YgYZxCzH6etgxydlIeQUzVY9XpK+aVyNEhn36Dc+ QfUIcplfSBhxWoN5nOaIAt6l4vE= 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:to:cc :from:subject:message-id:date:mime-version:content-type :content-transfer-encoding; s=default; bh=fR0DsmNnTZUQfA7Q0obyH7 Aqptc=; b=jJOmWiOWuQxIPl5axS17YP+sRtmUPA1FsZ5Itwyr9RYZQgwBPanY1x JT9SpDVWD/RE8l3pwHOzJU8aEvC1G93Z/wZNw7S9erHWVs8c0QM34XmR3SSTvTFK IoqJaKZY3p5LPHxYO+cLAd+gCeYT9L1EDrdt+Jb86IDuVZH0kmMqk= Received: (qmail 10014 invoked by alias); 1 Dec 2016 10:25:21 -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 9976 invoked by uid 89); 1 Dec 2016 10:25:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=respective, avrtiny, stripped X-HELO: mo4-p00-ob.smtp.rzone.de Received: from mo4-p00-ob.smtp.rzone.de (HELO mo4-p00-ob.smtp.rzone.de) (81.169.146.218) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 01 Dec 2016 10:25:07 +0000 X-RZG-AUTH: :LXoWVUeid/7A29J/hMvvT3ol15ykJcYwTPLBCxG2PQt7BpWLF2I= X-RZG-CLASS-ID: mo00 Received: from [192.168.0.123] (ip5f5871bb.dynamic.kabel-deutschland.de [95.88.113.187]) by smtp.strato.de (RZmta 39.10 DYNA|AUTH) with ESMTPSA id c0100fsB1AP40mo (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate); Thu, 1 Dec 2016 11:25:04 +0100 (CET) To: gcc-patches Cc: Denis Chertykov From: Georg-Johann Lay Subject: [testsuite, avr, committed]: Add target avr_tiny for respective tests. Message-ID: Date: Thu, 1 Dec 2016 11:25:04 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 X-IsSubscribed: yes Added target avr_tiny filter to 2 tests that are obviously intended to run on AVR_TINY. Applied as obvious. Johann gcc/testsuite/ * gcc.target/avr/tiny-memx.c: Only perform if target avr_tiny. * gcc.target/avr/tiny-caller-save.c: Dito. Index: gcc.target/avr/tiny-caller-save.c =================================================================== --- gcc.target/avr/tiny-caller-save.c (revision 243104) +++ gcc.target/avr/tiny-caller-save.c (revision 243105) @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target avr_tiny } } */ /* { dg-options "-mmcu=avrtiny -gdwarf -Os" } */ /* This is a stripped down piece of libgcc2.c that triggerd an ICE for avr with Index: gcc.target/avr/tiny-memx.c =================================================================== --- gcc.target/avr/tiny-memx.c (revision 243104) +++ gcc.target/avr/tiny-memx.c (revision 243105) @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target avr_tiny } } */ /* { dg-options "-mmcu=avrtiny" } */ const __memx char ascmonth[] = "Jan"; /* { dg-error "not supported" } */