From patchwork Mon Mar 24 00:50:27 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John David Anglin X-Patchwork-Id: 332940 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 CC2E62C00BE for ; Mon, 24 Mar 2014 11:50:46 +1100 (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:from:to:content-type:subject:mime-version:date; q= dns; s=default; b=Wjg8EZXVx7d7ieOqKOcOwNgat3+xBsOXECLDYEpJRdtENU bynV8K/U8ht0FL/qaE2xEJBc4FzvLyvMqAc/Ad5VdIN/gTvd5wnMklVPJ0vY3aGh +L5g5AxK5Mnv5zGdRi36CCRXvPbPGZdkwl2p05lpwZIMfvHETo+OWUt1dIcSc= 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:from:to:content-type:subject:mime-version:date; s= default; bh=FGLKeRPM8OkK2K5wyn54/2VoI9o=; b=hmrw55W/QK/CUxcJZ51+ D43HC9DO7BafIrFG12WwzQc3qn+P5dP4Y3d7dfn3QX532I3h3giEenJZu6Zb+3nE tYPdbQbcAIxCO+0D+BHJZc/c0fLeVvUEw+a8M3o3y9UTjIcmFIaHxzPUuan4S8pA osFKvBut4I0ygVR8xGAeYpc= Received: (qmail 11138 invoked by alias); 24 Mar 2014 00:50:39 -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 11127 invoked by uid 89); 24 Mar 2014 00:50:39 -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, MSGID_FROM_MTA_HEADER, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 X-HELO: blu0-omc3-s37.blu0.hotmail.com Received: from blu0-omc3-s37.blu0.hotmail.com (HELO blu0-omc3-s37.blu0.hotmail.com) (65.55.116.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 24 Mar 2014 00:50:38 +0000 Received: from BLU0-SMTP87 ([65.55.116.73]) by blu0-omc3-s37.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 23 Mar 2014 17:50:37 -0700 X-TMN: [UBc6W/KCHtuiEizBTH59YzzGpFipi71u] Message-ID: Received: from [192.168.2.10] ([70.26.34.41]) by BLU0-SMTP87.phx.gbl over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sun, 23 Mar 2014 17:50:36 -0700 From: John David Anglin To: GCC Patches Subject: [committed] Skip gcc.dg/torture/pr60092.c on 32-bit hpux MIME-Version: 1.0 (Apple Message framework v936) Date: Sun, 23 Mar 2014 20:50:27 -0400 The test fails because there is no undefined weak support on 32-bit hpux. Tested on hppa2.0w-hp-hpux11.11 and hppa64-hp-hpux11.11. Committed to trunk. Dave --- John David Anglin dave.anglin@bell.net 2014-03-23 John David Anglin * gcc.dg/torture/pr60092.c: Skip on 32-bit hpux. Index: gcc.dg/torture/pr60092.c =================================================================== --- gcc.dg/torture/pr60092.c (revision 208769) +++ gcc.dg/torture/pr60092.c (working copy) @@ -1,5 +1,6 @@ /* { dg-do run } */ /* { dg-require-weak "" } */ +/* { dg-skip-if "No undefined weak" { hppa*-*-hpux* && { ! lp64 } } { "*" } { "" } } */ /* { dg-xfail-run-if "posix_memalign modifies first arg on error" { *-*-solaris2.11* } { "-O0" } } */ typedef __SIZE_TYPE__ size_t;