From patchwork Mon Oct 31 14:26:12 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: 689321 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 3t6xXz11Vsz9t80 for ; Tue, 1 Nov 2016 01:28:02 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=DkeUaB06; 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:subject:date:message-id:mime-version:content-type; q=dns; s= default; b=foGbELbw5IOIY2MqtEE5qMCdFqE8Aw+7LOD/1t/CzU+LFmI5r4X7u vsQHq3gpqqhYMwA8xTmtGsEW3Gyoq7OiL/LpqkOsFo1uVObin3eKLeQpZW6HrKP/ ahO70Y8s30OTztGZ0RqbIDve8m4BC+3fJeh+6OMG2GH7vri1fjWd74= 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:subject:date:message-id:mime-version:content-type; s= default; bh=BuPASHgnzq9ZIfRhj4UOyaDctLY=; b=DkeUaB06k0JlwwHjhJxa Wx9QOEikzmP/Dm13zlyWHnW7B9Li5FO0JMBcVTB/jaClFjXniPsQM51yYRFpcFyu H/LmpARNcCgWZ4PPCfXA49m/7sQLF5wZ9e1PmVmIjod4iXMkhf1GnXAGkr6ZwNqU zoD9lVaWfo8hevAIpE2DHhk= Received: (qmail 113847 invoked by alias); 31 Oct 2016 14:27:53 -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 113830 invoked by uid 89); 31 Oct 2016 14:27:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_50, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:14.3.235, H*RU:14.3.235.1, H*r:ip*14.3.235.1, Hx-spam-relays-external:14.3.235.1 X-HELO: eusmtp01.atmel.com Received: from eusmtp01.atmel.com (HELO eusmtp01.atmel.com) (212.144.249.243) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 31 Oct 2016 14:27:42 +0000 Received: from HNOCHT02.corp.atmel.com (10.145.133.41) by eusmtp01.atmel.com (10.145.145.31) with Microsoft SMTP Server (TLS) id 14.3.235.1; Mon, 31 Oct 2016 15:27:38 +0100 Received: from jaguar.atmel.com (10.145.133.18) by HNOCHT02.corp.atmel.com (10.145.133.41) with Microsoft SMTP Server (TLS) id 14.3.235.1; Mon, 31 Oct 2016 15:27:37 +0100 User-agent: mu4e 0.9.17; emacs 24.5.1 From: Senthil Kumar Selvaraj To: gcc-patches List Subject: [Patch, testsuite] Skip gcc.dg/lto/pr60449_0.c for avr Date: Mon, 31 Oct 2016 19:56:12 +0530 Message-ID: <87twbs388r.fsf@atmel.com> MIME-Version: 1.0 X-IsSubscribed: yes Hi, gcc.dg/lto/pr60449_0.c fails to link for the avr target because it doesn't have an implementation for gettimeofday. This patch therefore skips the test for avr. Committed to trunk as obvious. Regards Senthil gcc/testsuite/ChangeLog 2016-10-31 Senthil Kumar Selvaraj * gcc.dg/lto/pr60449_0.c: Skip for avr. Index: gcc/testsuite/gcc.dg/lto/pr60449_0.c =================================================================== --- gcc/testsuite/gcc.dg/lto/pr60449_0.c (revision 241697) +++ gcc/testsuite/gcc.dg/lto/pr60449_0.c (working copy) @@ -1,4 +1,5 @@ /* { dg-lto-do link } */ +/* { dg-skip-if "Needs gettimeofday" { "avr-*-*" } } */ extern int printf (const char *__restrict __format, ...); typedef long int __time_t;