From patchwork Tue Feb 14 23:57:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 141217 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]) by ozlabs.org (Postfix) with SMTP id 5F63F1007D1 for ; Wed, 15 Feb 2012 10:57:33 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1329868654; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=yV1NPmI gU2LGOvihLtUmNNKLFaI=; b=MINXWrXyeSdUJ9aoX6212eTzPlTsrcZ8AcXg40W fJjoqc911ohNahoNYnU+mBYO3hlUMkbYUto+/RyqAR7/yqnEWCWb2PAKEx3haTP1 tUEfrQDuAL+G+nxqRDENiwcuRMd6zRKSG1Mwo5kFewIdGIuq6kB79DdpWjRg9Ib4 diNY= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=WFFS6AywdI78T6zU8tqIHyrxvyO/CrCHAtuWwMJpR4vftOI5ETewqMEOXDTWWZ EMaZDGlzkoQdjKkfrWCmoT07mf4vtS/CysJhCigp6lZ1xH5UypqxI4GlBp6DITTN WLRgqVKbSn5DhM1Nb+HAL5AAey6iXBlMXuNztUWDt3rdY=; Received: (qmail 16559 invoked by alias); 14 Feb 2012 23:57:26 -0000 Received: (qmail 16542 invoked by uid 22791); 14 Feb 2012 23:57:24 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-lpp01m010-f47.google.com (HELO mail-lpp01m010-f47.google.com) (209.85.215.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 14 Feb 2012 23:57:11 +0000 Received: by lahc1 with SMTP id c1so548895lah.20 for ; Tue, 14 Feb 2012 15:57:10 -0800 (PST) MIME-Version: 1.0 Received: by 10.152.147.202 with SMTP id tm10mr17734819lab.49.1329263829981; Tue, 14 Feb 2012 15:57:09 -0800 (PST) Received: by 10.112.52.40 with HTTP; Tue, 14 Feb 2012 15:57:09 -0800 (PST) Date: Tue, 14 Feb 2012 23:57:09 +0000 Message-ID: Subject: [v3] disable failing test on cygwin From: Jonathan Wakely To: "libstdc++" , gcc-patches 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 The native_handle typesize test fails on cygwin, as with other targets where the assumption about sizes doesn't hold. Tested x86_64-linux, committed to trunk. commit 26b8bf489b27e7399305a19384c1cac4829b1a9f Author: Jonathan Wakely Date: Tue Feb 14 22:50:40 2012 +0000 * 30_threads/thread/native_handle/typesizes.cc: Do not run on cygwin. diff --git a/libstdc++-v3/testsuite/30_threads/thread/native_handle/typesizes.cc b/libstdc++-v3/testsuite/30_threads/thread/native_handle/typesizes.cc index 79ea99c..3e105d4 100644 --- a/libstdc++-v3/testsuite/30_threads/thread/native_handle/typesizes.cc +++ b/libstdc++-v3/testsuite/30_threads/thread/native_handle/typesizes.cc @@ -1,7 +1,6 @@ -// { dg-do run { target *-*-linux* *-*-solaris* *-*-cygwin mips-sgi-irix6* powerpc-ibm-aix* } } +// { dg-do run { target *-*-linux* *-*-solaris* mips-sgi-irix6* powerpc-ibm-aix* } } // { dg-options " -std=gnu++0x -pthread" { target *-*-linux* mips-sgi-irix6* powerpc-ibm-aix* } } // { dg-options " -std=gnu++0x -pthreads" { target *-*-solaris* } } -// { dg-options " -std=gnu++0x " { target *-*-cygwin } } // { dg-require-cstdint "" } // { dg-require-gthreads "" }