From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [OSSTEST PATCH 21/33] sg-check-tested: New --pass-job= option Date: Thu, 17 Sep 2015 18:37:48 +0100 Message-ID: <1442511480-32587-22-git-send-email-ian.jackson@eu.citrix.com> References: <1442511480-32587-1-git-send-email-ian.jackson@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1Zcd8T-0006Tr-UJ for xen-devel@lists.xenproject.org; Thu, 17 Sep 2015 17:38:18 +0000 In-Reply-To: <1442511480-32587-1-git-send-email-ian.jackson@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Ian Jackson , Ian Campbell List-Id: xen-devel@lists.xenproject.org Specifies that returned information should relate to a flight in which a particular job existed and passed. The option can be repeated if desired (to specify flights in which _all_ those jobs passed). Signed-off-by: Ian Jackson --- v2: New patch --- sg-check-tested | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sg-check-tested b/sg-check-tested index e503cf0..1a3afa3 100755 --- a/sg-check-tested +++ b/sg-check-tested @@ -86,6 +86,16 @@ END my @blessings= split /\,/, $1; push @conds_vars, @blessings; push @conds, "(". (join " OR ", map { "blessing=?" } @blessings). ")"; + } elsif (m/^--pass-job=(.*)$/) { + push @conds_vars, $1; + push @conds, <