From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3043 invoked by alias); 19 May 2008 08:09:11 -0000 Received: (qmail 3028 invoked by uid 22791); 19 May 2008 08:09:07 -0000 X-Spam-Check-By: sourceware.org Received: from vegas.theobroma-systems.com (HELO mail.theobroma-systems.com) (88.198.52.168) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 19 May 2008 08:08:48 +0000 Received: from [86.59.122.178] (port=57751 helo=[10.0.2.106]) by mail.theobroma-systems.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1Jy0QF-0003fk-BU for mauve-patches@sourceware.org; Mon, 19 May 2008 10:08:45 +0200 Subject: Re: write XML output file only once From: Christian Thalinger To: mauve-patches ml In-Reply-To: <1210847780.3214.24.camel@imac523d.theobroma-systems.com> References: <1210847780.3214.24.camel@imac523d.theobroma-systems.com> Content-Type: text/plain Date: Mon, 19 May 2008 08:09:00 -0000 Message-Id: <1211184522.11614.18.camel@imac523d.theobroma-systems.com> Mime-Version: 1.0 X-Mailer: Evolution 2.22.1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2008/txt/msg00033.txt.bz2 On Thu, 2008-05-15 at 12:36 +0200, Christian Thalinger wrote: > Hi! > > This patch only writes the XML output file once after the Harness sends > "_dump_data_" and not after each finished testlet. This can be a huge > amount of data writes when running e.g. on java.util. > > OK to commit? I'll commit that one now. For me this is a much better solution than the current one because the current one is only better if the failing test is the last one (think of running a lot of tests like java.util, not just only one or two). When a test crashes or hangs Harness restarts a new RunnerProcess and overwrites the previous XML file, so all previous test data is lost anyways. - twisti