From patchwork Fri Aug 14 17:21:45 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 11714861 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id F36B2618 for ; Fri, 14 Aug 2020 17:23:32 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D025520774 for ; Fri, 14 Aug 2020 17:23:32 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=citrix.com header.i=@citrix.com header.b="gOZomQpB" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D025520774 Authentication-Results: mail.kernel.org; dmarc=fail (p=reject dis=none) header.from=eu.citrix.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1k6dPw-0002jW-9e; Fri, 14 Aug 2020 17:23:00 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1k6dPv-00024Q-GG for xen-devel@lists.xenproject.org; Fri, 14 Aug 2020 17:22:59 +0000 X-Inumbo-ID: 252a8173-d90c-4431-960b-bc72e22bcc23 Received: from esa6.hc3370-68.iphmx.com (unknown [216.71.155.175]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id 252a8173-d90c-4431-960b-bc72e22bcc23; Fri, 14 Aug 2020 17:22:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=citrix.com; s=securemail; t=1597425740; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=rk4K15u28Nj+M4CrVc/t4g31Ehc9MfDdyP/m7plabjo=; b=gOZomQpBfGEYLR6lsBvIHwsVTKup4AH5osxza0ZDgV6AWqKqu/3J3IX1 Dn8PEn+gYrzDjSMy83US7WrqtcTK4CUrSddKpS4Nt5PjLezJ2zSYLocJQ EwsV3a6xq0ZSZ1s7iqz14P+r4HM8OrR7OdfSU9/rNQYktREBqvnfnfKFI 4=; Authentication-Results: esa6.hc3370-68.iphmx.com; dkim=none (message not signed) header.i=none IronPort-SDR: 57fGnd9QyUDalP3QxlumkonaepdRwz5uQcg/r75btipjpiouLVGxOdsUJRVO7f75Ub7Se1bMlf 2pY4pQRgnBIn8X8DMydzXZYxaNF826KG2gVX7nJiGvO5K4oN1d/phLmrG5VCgF7sNjjUeoD+4i OhtYmFOuvawtIO+PU09jl4Itj1YuSVQlbNH/rfZ8lHOD2qsQhiEAxLO0dFJCty3Larnog28fYY xXw/DY8yDJmQo4xAFsKGspP89Zke4SESow4M9lYz5njnauhZB2l8eyRuy27udDrfa4HaVySD9z Prg= X-SBRS: 2.7 X-MesageID: 24879740 X-Ironport-Server: esa6.hc3370-68.iphmx.com X-Remote-IP: 162.221.158.21 X-Policy: $RELAYED X-IronPort-AV: E=Sophos;i="5.76,313,1592884800"; d="scan'208";a="24879740" From: Ian Jackson To: CC: Ian Jackson Subject: [OSSTEST PATCH 40/60] sg-report-job-history: Refactor "ALL" handling Date: Fri, 14 Aug 2020 18:21:45 +0100 Message-ID: <20200814172205.9624-41-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20200814172205.9624-1-ian.jackson@eu.citrix.com> References: <20200814172205.9624-1-ian.jackson@eu.citrix.com> MIME-Version: 1.0 X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" * Make an explicit entry ALL in @branches, rather than implicitly processing ALL as well. * Consequently, put explicit ALL entries in @tasks too, rather than putting in entries without a branch name. * Pass ALL to processjobbranch rather than undef, and turn it into the internally-used undef at the start. When used with --flight (findflight), this has no functional change. When used with --job, ALL must now be included in the branch list passed to --branches. The only in-tree call is with --flight. Signed-off-by: Ian Jackson --- sg-report-job-history | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sg-report-job-history b/sg-report-job-history index 3b45992f..8932458e 100755 --- a/sg-report-job-history +++ b/sg-report-job-history @@ -72,7 +72,7 @@ sub findflight () { SELECT branch FROM flights WHERE flight=? END die "$flight ? @$branches ?" if @$branches!=1; - @branches= @$branches; + @branches= ('ALL', @$branches); my $selectq= db_prepare(<