From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24379 invoked by alias); 20 Sep 2013 17:12:00 -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 24366 invoked by uid 89); 20 Sep 2013 17:11:59 -0000 Received: from mail-ie0-f181.google.com (HELO mail-ie0-f181.google.com) (209.85.223.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 20 Sep 2013 17:11:59 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,NO_RELAYS autolearn=ham version=3.3.2 X-HELO: mail-ie0-f181.google.com Received: by mail-ie0-f181.google.com with SMTP id tp5so1399245ieb.40 for ; Fri, 20 Sep 2013 10:11:57 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=FMaf//Ocd13M0f3DQ85Gs1RIBJjW92SNU96JOEv19Zg=; b=nKKpx5D16kizkpcL/PznlH/HLmXa/S3P7GAHh003AuRN56UOWbPkmi9Op6rM1oZ0Du Q4ylVv1vLbRwWnBQiERQ5+SB0ygEI8wqZnDq4fbvcS3jJlWJzr2OOCrg+0Il/S759eFX ncChBgLwJHhc1ipbl0MAdnWM64+AGQevm58+BNsgrCfwvjOdxvVYjQAiEuyNZXwpvrOv Etk6/VpD3NVEO6D2a3oS2r8VtEu23KyvvMEknnPNEU6+DIJjM5nfalIzF/SuHtuE1e7u +RsziUWJwwgnX7PHEH9aYuZItvWzvxyier/2xK90iL7hnE3m0UQjlVP5JyfD7n+3njTL pUZg== X-Gm-Message-State: ALoCoQlrqSJYdHu27EHl3jP5DAsjVS8BNZdQcvHbSaFu/9Eytlo/ADp8lAk2vuEKoIwtyXwpGb+jb7p7aDBtAfBGyMUzRfog/0CNnuUc82qQRmzE2nLCAvEYyHe40NDKD2Z/kxj+3us/J9GKrP7FYfahU4ZDV6nrOfqAo/DmXYWSlUaLo49OfumlOpFhczwAUhGVweVUddjyvHERZqYPG1ZhFTTVP9dwUQ== MIME-Version: 1.0 X-Received: by 10.50.234.162 with SMTP id uf2mr3331175igc.48.1379697117356; Fri, 20 Sep 2013 10:11:57 -0700 (PDT) Received: by 10.64.31.100 with HTTP; Fri, 20 Sep 2013 10:11:57 -0700 (PDT) In-Reply-To: <523C015E.30902@codesourcery.com> References: <520B7F70.6070207@codesourcery.com> <1377663394-4975-1-git-send-email-yao@codesourcery.com> <1377663394-4975-3-git-send-email-yao@codesourcery.com> <21051.19430.251374.942418@ruffy.mtv.corp.google.com> <523C015E.30902@codesourcery.com> Date: Fri, 20 Sep 2013 17:12:00 -0000 Message-ID: Subject: Re: [RFC 2/3] Perf test framework From: Doug Evans To: Yao Qi Cc: gdb-patches Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00773.txt.bz2 On Fri, Sep 20, 2013 at 1:03 AM, Yao Qi wrote: > _report is private to be used only in class TestCase. I double checked that > private method can be overridden in python, so execute_test can be private > too. I'll do it in V2. Sorry for the followup. If execute_test is intended to be overridden in subclasses I wouldn't make it private. Leaving it as public is fine.