From patchwork Tue Nov 4 04:34:00 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 406418 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 1E44D14003E for ; Tue, 4 Nov 2014 15:34:27 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; q=dns; s=default; b=D4YuNyr6nn/nVLcg3 9WJ21BBpfeRafQlp6yPFMbgOn1i8m1nrWgAojv41vn5ZnA2Aue0w+eCKZuH/PoAk tjRm0qDvvnwUU7cfbDpOJ3ljK1KIVpSJRQFEBIePGGejSD2YcSLp6rujjWcP7h9Z 95B4cOuZU61Do6hPTcMQWh+CaQ= 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:date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=default; bh=JAhUQE0BZNYuZ9/Tt2FHBSS 0O/8=; b=lB3ktbYb+Zl99u5rRpNl+zwyMCy5b8847AdZdlmomu75JYkamGV+8ew /0bQ8jb5KBLd540JVMwOkjNpyr1Y67dhCUqJGkJmPSWJbTIsP/Bfa2Qhom5KW5DG R7RnI+VDoOcmv3ImmkMmP1nl+sgU5eS7GtDaYaXcNaYjndr2saeQ= Received: (qmail 8940 invoked by alias); 4 Nov 2014 04:34:11 -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 8909 invoked by uid 89); 4 Nov 2014 04:34:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 3 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 04 Nov 2014 04:34:09 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sA44Y2wv001715 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 3 Nov 2014 23:34:02 -0500 Received: from localhost (ovpn-116-19.ams2.redhat.com [10.36.116.19]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sA44Y0Av025669; Mon, 3 Nov 2014 23:34:01 -0500 Date: Tue, 4 Nov 2014 04:34:00 +0000 From: Jonathan Wakely To: libstdc++ , gcc-patches@gcc.gnu.org Cc: Paolo Carlini , Rainer Emrich , "gcc@gcc.gnu.org" Subject: Re: libstdc++ testsuite make targets check-parallel and check-performance don't work anymore Message-ID: <20141104043400.GJ3961@redhat.com> References: <54579773.60601@emrich-ebersheim.de> <5457AAF8.5060403@oracle.com> <5457C09A.60303@oracle.com> <20141104034118.GG3961@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20141104034118.GG3961@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) On 04/11/14 03:41 +0000, Jonathan Wakely wrote: >On 03/11/14 22:07 +0000, Jonathan Wakely wrote: >>On 3 November 2014 17:51, Paolo Carlini wrote: >>>.. other than the above issue, I see a segmentation fault for: >>> >>> performance/ext/pb_ds/multimap_text_insert_mem_large.cc Fixed like so. commit 75a3f132da320a76baf7e82f4f850cdfce239a2e Author: Jonathan Wakely Date: Tue Nov 4 04:33:32 2014 +0000 * testsuite/util/testsuite_allocator.h (operator==): Fix recursion. diff --git a/libstdc++-v3/testsuite/util/testsuite_allocator.h b/libstdc++-v3/testsuite/util/testsuite_allocator.h index 8edc0a5..dec8d1a 100644 --- a/libstdc++-v3/testsuite/util/testsuite_allocator.h +++ b/libstdc++-v3/testsuite/util/testsuite_allocator.h @@ -209,7 +209,7 @@ namespace __gnu_test { const Alloc1& alloc1 = lhs; const Alloc2& alloc2 = rhs; - return lhs == rhs; + return alloc1 == alloc2; } template