From patchwork Mon Feb 1 14:28:28 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Campbell X-Patchwork-Id: 8180071 Return-Path: X-Original-To: patchwork-xen-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 1579BBEEE5 for ; Mon, 1 Feb 2016 14:30:58 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3734120435 for ; Mon, 1 Feb 2016 14:30:56 +0000 (UTC) Received: from lists.xen.org (lists.xenproject.org [50.57.142.19]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id F046120434 for ; Mon, 1 Feb 2016 14:30:54 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xen.org) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aQFTF-0006AN-8F; Mon, 01 Feb 2016 14:28:49 +0000 Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aQFTD-00069W-Ck for xen-devel@lists.xen.org; Mon, 01 Feb 2016 14:28:47 +0000 Received: from [85.158.143.35] by server-1.bemta-4.messagelabs.com id 31/25-09708-E9B6FA65; Mon, 01 Feb 2016 14:28:46 +0000 X-Env-Sender: prvs=832d3ee5e=Ian.Campbell@citrix.com X-Msg-Ref: server-4.tower-21.messagelabs.com!1454336919!13282904!1 X-Originating-IP: [66.165.176.89] X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni44OSA9PiAyMDMwMDc=\n, received_headers: No Received headers X-StarScan-Received: X-StarScan-Version: 7.35.1; banners=-,-,- X-VirusChecked: Checked Received: (qmail 63265 invoked from network); 1 Feb 2016 14:28:45 -0000 Received: from smtp.citrix.com (HELO SMTP.CITRIX.COM) (66.165.176.89) by server-4.tower-21.messagelabs.com with RC4-SHA encrypted SMTP; 1 Feb 2016 14:28:45 -0000 X-IronPort-AV: E=Sophos;i="5.22,380,1449532800"; d="scan'208";a="328892876" From: Ian Campbell To: , Date: Mon, 1 Feb 2016 14:28:28 +0000 Message-ID: <1454336912-28503-1-git-send-email-ian.campbell@citrix.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1454336890.28781.99.camel@citrix.com> References: <1454336890.28781.99.camel@citrix.com> MIME-Version: 1.0 X-DLP: MIA2 Cc: Ian Campbell Subject: [Xen-devel] [PATCH OSSTEST v1 1/5] mg-show-flight-runvars: collect rows into @rows, output in second step X-BeenThere: xen-devel@lists.xen.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This will make it easier to collect more rows. Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- mg-show-flight-runvars | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mg-show-flight-runvars b/mg-show-flight-runvars index c800110..820c577 100755 --- a/mg-show-flight-runvars +++ b/mg-show-flight-runvars @@ -46,6 +46,7 @@ die unless @ARGV==1 && $ARGV[0] =~ m/^\w+$/; our ($flight) = @ARGV; our @cols = qw(job name val); +our @rows; $flight =~ m/^\d+/ or $flight = "'$flight'"; my $qfrom = "FROM runvars WHERE flight=$flight AND $synthcond"; @@ -62,6 +63,10 @@ $colws[1] += length $synthsufx; while (my (@row) = $q->fetchrow_array()) { my $synth = shift @row; $row[1] .= $synthsufx if $synth && $synth ne 'f'; # sqlite3 is typeless - printf "%-*s %-*s %-*s\n", map { $colws[$_], $row[$_] } qw(0 1 2) + push @rows, \@row; +} + +foreach my $row (@rows) { + printf "%-*s %-*s %-*s\n", map { $colws[$_], $row->[$_] } qw(0 1 2) or die $!; }