From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31918 invoked by alias); 3 Dec 2014 02:37:54 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 31904 invoked by uid 89); 3 Dec 2014 02:37:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-ie0-f201.google.com Received: from mail-ie0-f201.google.com (HELO mail-ie0-f201.google.com) (209.85.223.201) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 03 Dec 2014 02:37:51 +0000 Received: by mail-ie0-f201.google.com with SMTP id rp18so1584120iec.0 for ; Tue, 02 Dec 2014 18:37:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:mime-version:content-type :content-transfer-encoding:message-id:date:to:subject:in-reply-to :references; bh=nLsNYxb/2Da4i4pHL/JvxnA/CqKdx3HR1wmKJDcBk0I=; b=C5TaN6SryRerOrrtHq8WcrELN1XWYViOeNyp69pyaVSetgmzUu4nuRL9c8FmmZA8Rb cpxOKKD9wpIosznNGJOHSoUKg2cjzOa1VsSFA8J6mY93gfGPbwTRyMPDpcEqJgRvmEpB e/knIDyvyjyUUeGrlzqruzVfEovjX0srgxNFoX6FmlVv6DIA7br4ETUjgtRFbq6wEqX7 7Y1o8lDowQcHX/LsocOOAfL1+h/1u8tWCEWk7oBtedrGANVfcW9pX9BF36HTf1pW4zFr TkLPrMTLA1iViGKJrnpElDju8FPZj+4IlwrtyQbv2JBRgv8vQaS0U2B9MYZv8NMN496W bgtw== X-Gm-Message-State: ALoCoQnjAHuDrfoYyGKZTFcj+zRFtiLxlYRRRC22X4QkNKsFRDH28y4U0KRKfyLoFQ/I+6OQag6lUPzfETGrFci9bEgN0sEHDnJ+Dwpnly9aEyJcNUm6h6O9ZID/ET3N/0a1NGl9CYNPszUX2pPrQu4hvNi1yJoX60d5P/0+C3Dob+U5t/f1fmY= X-Received: by 10.182.252.164 with SMTP id zt4mr2442736obc.1.1417574269362; Tue, 02 Dec 2014 18:37:49 -0800 (PST) Received: from corpmail-nozzle1-1.hot.corp.google.com ([100.108.1.104]) by gmr-mx.google.com with ESMTPS id r6si927224yhg.1.2014.12.02.18.37.48 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 02 Dec 2014 18:37:49 -0800 (PST) Received: from ruffy2.mtv.corp.google.com ([172.17.128.107]) by corpmail-nozzle1-1.hot.corp.google.com with ESMTP id Zdkpf0P2.1; Tue, 02 Dec 2014 18:37:49 -0800 From: Doug Evans MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21630.30588.324585.27271@ruffy2.mtv.corp.google.com> Date: Wed, 03 Dec 2014 02:37:00 -0000 To: gdb-patches@sourceware.org Subject: Re: [PATCH 1/2] [PR symtab/17602] Split up gdb.cp/anon-ns.cc In-Reply-To: References: X-IsSubscribed: yes X-SW-Source: 2014-12/txt/msg00045.txt.bz2 Doug Evans writes: > Hi. > > A lot of our tests live in just one source file which is bad > because gdb expands the symbol table with main() at startup. > Thus such tests exercise less than they could. > > This patch splits up the gdb.cp/anon-ns test, > it was useful in diagnosing pr 17602. > > 2014-11-25 Doug Evans > > PR symtab/17602 > * gdb.cp/anon-ns.cc: Move guts of this file to ... > * gdb.cp/anon-ns-2.cc: ... here. New file. > * gdb.cp/anon-ns.exp: Update. Committed, both parts 1 and 2.