From patchwork Wed Mar 16 13:50:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Senthil Kumar Selvaraj X-Patchwork-Id: 598389 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 3qQCYp38vVz9sRB for ; Thu, 17 Mar 2016 00:50:53 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=oG5XL8lz; 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:from :to:cc:subject:date:message-id:mime-version:content-type; q=dns; s=default; b=COWVlNznddza/gvMFTeggm9jab//MqZ0zYhgr7QDbuofhZTitZ 69r9WFtHBL0qjQoqBi/Ysa8XRTIVTzQrbq4BDRehMsPgEN4Eumz8GoDK//xMVfce qL3n3eeeWLkOJrdQL1bdTDxfAMmJVGYpuKu7UqsB6WmgRev58bIEtlC34= 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 :to:cc:subject:date:message-id:mime-version:content-type; s= default; bh=LlT6ir2kVSeKZpqBrb16XGVMbE4=; b=oG5XL8lz+FRN7IsDyOYA HGtNLOYzWcS7jrRJc6N8RAJWIyhOcNOgkvJ/sQa8XgnULfkAYe23TGtmL7jvviyi mz5rHpMS5W02L+Ghccmtp/DjtoKVX+jzRIIcx/i8pd32UylzcBcO84tC/hfWSJsd zFR7rA1Gur+bL4VdJDddbJ8= Received: (qmail 76068 invoked by alias); 16 Mar 2016 13:50:46 -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 76050 invoked by uid 89); 16 Mar 2016 13:50:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=64k, senthil_kumar.selvaraj@atmel.com, senthil_kumarselvarajatmelcom, Hx-languages-length:918 X-HELO: eusmtp01.atmel.com Received: from eusmtp01.atmel.com (HELO eusmtp01.atmel.com) (212.144.249.242) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 16 Mar 2016 13:50:44 +0000 Received: from HNOCHT01.corp.atmel.com (10.161.30.161) by eusmtp01.atmel.com (10.161.101.30) with Microsoft SMTP Server (TLS) id 14.3.235.1; Wed, 16 Mar 2016 14:50:36 +0100 Received: from jaguar.atmel.com (10.161.30.18) by HNOCHT01.corp.atmel.com (10.161.30.161) with Microsoft SMTP Server (TLS) id 14.3.235.1; Wed, 16 Mar 2016 14:50:40 +0100 User-agent: mu4e 0.9.13; emacs 24.5.1 From: Senthil Kumar Selvaraj To: GCC Patches CC: Mike Stump , Jeff Law Subject: [Patch, testsuite] Skip testcase for avr Date: Wed, 16 Mar 2016 19:20:00 +0530 Message-ID: <87bn6esfav.fsf@atmel.com> MIME-Version: 1.0 X-IsSubscribed: yes Hi, This trivial patch skips gcc.c-torture/compile/20151204.c for the avr target - the test allocates ~64K on the stack, which is too big for the avr target. Right now, the test errors out with "total size of local objects too large". If this is ok, could someone commit please? I don't have commit access. Regards Senthil gcc/testsuite/ChangeLog 2016-03-16 Senthil Kumar Selvaraj * gcc.c-torture/compile/20151204.c: Skip for avr. diff --git a/gcc/testsuite/gcc.c-torture/compile/20151204.c b/gcc/testsuite/gcc.c-torture/compile/20151204.c index 036316c..0a60871 100644 --- a/gcc/testsuite/gcc.c-torture/compile/20151204.c +++ b/gcc/testsuite/gcc.c-torture/compile/20151204.c @@ -1,3 +1,5 @@ +/* { dg-skip-if "Array too big" { "avr-*-*" } { "*" } { "" } } */ + typedef __SIZE_TYPE__ size_t; int strcmp (const char*, const char*);