From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19596 invoked by alias); 19 Sep 2013 17:25:51 -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 19585 invoked by uid 89); 19 Sep 2013 17:25:50 -0000 Received: from mail-vb0-f74.google.com (HELO mail-vb0-f74.google.com) (209.85.212.74) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 19 Sep 2013 17:25:50 +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,RP_MATCHES_RCVD,SPF_SOFTFAIL autolearn=ham version=3.3.2 X-HELO: mail-vb0-f74.google.com Received: by mail-vb0-f74.google.com with SMTP id w16so1048617vbf.3 for ; Thu, 19 Sep 2013 10:25:47 -0700 (PDT) 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:cc:subject:in-reply-to :references; bh=m/n1qXTVsXCECdvSCZe/JNpTjXg8wDrhdFjL1b+aVTA=; b=RTHG6Q3V+Eph/djvgw/jwUySKIo+H6onXqp+ZM3RKik+PV8wg2EXUfRDy4WGagflo/ 1deAIPcgCklQb1+g+uEs2bB2nY9dPvpi7JOmkSKKB9gdjM+bNCLJCHS9tXVZOBvl5BbQ 6nkiFory1M8hA9hmPLPvK40F1CwARKl//bYxs0lcTDDH0KbTUgTSHDnW/Os9DC+zrroA H1LBw1Nc01Vz9EHSSDG6a6usyFJ31LY0ztdqT6TCky67k3Y728eZVzcYs3+mwixOY0ZO v1mHKSJ+E+11Y2/0SIQ2O43pAFMnZ/BDl+uFk/7Q3V4RAym3zngAj40i/Vb5uzBVxwkJ bLzA== X-Gm-Message-State: ALoCoQkNJofZiV+UmTI6nxM8pY6lSisNDsktdxavWI1ODwhC1K0V+bnrDzOWdXV2rAf43x13JJBrmcRJihk+qvmYPRwJ16Tlj7/kdbRoifGXuhAiy7H0IqvAt4aRyx40NBrolGdX+3hyeFouI+7oC2kFZ5PhjZBGRgF2TZP6nCpx0DLslxEE59bswoovtz/5N1Bb5wMZcYvVOJ62/A66k7Ng19rTAbMPgQ== X-Received: by 10.236.73.164 with SMTP id v24mr1035831yhd.24.1379611547726; Thu, 19 Sep 2013 10:25:47 -0700 (PDT) Received: from corp2gmr1-1.hot.corp.google.com (corp2gmr1-1.hot.corp.google.com [172.24.189.92]) by gmr-mx.google.com with ESMTPS id a42si1050439yhj.6.1969.12.31.16.00.00 (version=TLSv1.1 cipher=AES128-SHA bits=128/128); Thu, 19 Sep 2013 10:25:47 -0700 (PDT) Received: from ruffy.mtv.corp.google.com (ruffy.mtv.corp.google.com [172.17.128.44]) by corp2gmr1-1.hot.corp.google.com (Postfix) with ESMTP id 24A3331C0FC; Thu, 19 Sep 2013 10:25:46 -0700 (PDT) From: Doug Evans MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21051.13210.593777.539641@ruffy.mtv.corp.google.com> Date: Thu, 19 Sep 2013 17:25:00 -0000 To: Yao Qi Cc: Subject: Re: [RFC 0/3] GDB Performance testing In-Reply-To: <1377663394-4975-1-git-send-email-yao@codesourcery.com> References: <520B7F70.6070207@codesourcery.com> <1377663394-4975-1-git-send-email-yao@codesourcery.com> X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00693.txt.bz2 Yao Qi writes: > This patch series implement GDB performance testing infrastructure > according to the design I posted here > > > Here are some highlights: > > - Performance testing can be run via 'make check-perf' > - GDB and GDBServer is started by dejagnu, so the usage of > 'make check-perf' is same as the usage of existing 'make check'. > - Performance test result is saved in testsuite/perftest.log, which > is appended in multiple runs. > - Workload of each test can be customized by passing parameters to > 'make check-perf'. These are all great, modulo "Consistency Is Good" tells me performance test results should overwrite perftest.log. That's what "make check" does. One could make that configurable, but IWBN if the default behaviour was consistent.