From patchwork Sat Jul 20 05:58:42 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joern Rennecke X-Patchwork-Id: 260405 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 145672C00A0 for ; Sat, 20 Jul 2013 15:58:56 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:to:cc:subject:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=yzr9zkEASYaR2F+Q VzXRjseQe9Fac5A0HQ+++w9JNkdtAZSKVNDF6hgUkN7Fbx3LcMkLFxSXXKL00aeq MYzTF7VGUjltPvhteasZHVHEQxXDtw1P0b8x/NRQx+wvygCGVt21gNVgT8mjm5rL x0Rtoi+wORdgg/As4srhmwTaiGU= 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 :message-id:date:from:to:cc:subject:mime-version:content-type :content-transfer-encoding; s=default; bh=b+6sC2A2fD99yTik7Xf/P5 x7hVQ=; b=t4ZvJSoOHM1xrSZVjFGi8KQEvSYybp+dgyaeoefCNRpmXfz4U0hSZS vk/LxAj1Xh5FW0II46SINVyKhPhZ5qhet8AtgjJRxeJxK5+ZexYMzBKbLVPirnhT +oA0QamKeytJDCHo1erJWXrSvMLGoPg4ylk+q4nne5K0cIJXk1NX0= Received: (qmail 3200 invoked by alias); 20 Jul 2013 05:58:50 -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 3191 invoked by uid 89); 20 Jul 2013 05:58:50 -0000 X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_MED, RCVD_IN_HOSTKARMA_NO, RCVD_IN_HOSTKARMA_W, RDNS_NONE autolearn=ham version=3.3.1 Received: from Unknown (HELO c62.cesmail.net) (216.154.195.54) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Sat, 20 Jul 2013 05:58:50 +0000 Received: from unknown (HELO epsilon2) ([192.168.1.60]) by c62.cesmail.net with ESMTP; 20 Jul 2013 01:58:43 -0400 Received: from cust213-dsl91-135-11.idnet.net (cust213-dsl91-135-11.idnet.net [91.135.11.213]) by webmail.spamcop.net (Horde MIME library) with HTTP; Sat, 20 Jul 2013 01:58:42 -0400 Message-ID: <20130720015842.ncb41feq8c0k8g44-nzlynne@webmail.spamcop.net> Date: Sat, 20 Jul 2013 01:58:42 -0400 From: Joern Rennecke To: gcc-patches@gcc.gnu.org Cc: Denis Chertykov , Anatoly Sokolov , Eric Weddington Subject: testsuite patches (3/14): gcc.dg/c99-stdint-1.c [avr-*-*]: Update line number for dg-bogus. MIME-Version: 1.0 User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) X-Virus-Found: No Because we now issue the error message for the place of the macro definition, the expected line number has to be updated. Tested for avr with --target_board=atmega128-sim and native on i686-pc-linuc-gnu. 2013-05-26 Joern Rennecke * gcc.dg/c99-stdint-1.c [avr-*-*]: Update line number for dg-bogus. Index: gcc.dg/c99-stdint-1.c =================================================================== --- gcc.dg/c99-stdint-1.c (revision 201032) +++ gcc.dg/c99-stdint-1.c (working copy) @@ -214,7 +214,7 @@ test_max (void) void test_misc_limits (void) { -/* { dg-bogus "size" "ptrdiff is 16bits" { xfail avr-*-* } 218 } */ +/* { dg-bogus "size" "ptrdiff is 16bits" { xfail avr-*-* } 56 } */ CHECK_SIGNED_LIMITS_2(__PTRDIFF_TYPE__, PTRDIFF_MIN, PTRDIFF_MAX, -65535L, 65535L); #ifndef SIGNAL_SUPPRESS CHECK_LIMITS_2(sig_atomic_t, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, -127, 127, 255);