From patchwork Tue Mar 31 16:43:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 11468117 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 4F7031667 for ; Tue, 31 Mar 2020 16:44:27 +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 360B7206CC for ; Tue, 31 Mar 2020 16:44:27 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 360B7206CC Authentication-Results: mail.kernel.org; dmarc=fail (p=none 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.89) (envelope-from ) id 1jJJz7-0003pT-HE; Tue, 31 Mar 2020 16:43:29 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1jJJz6-0003pG-BA for xen-devel@lists.xenproject.org; Tue, 31 Mar 2020 16:43:28 +0000 X-Inumbo-ID: bbdd354a-736e-11ea-b58d-bc764e2007e4 Received: from chiark.greenend.org.uk (unknown [2001:ba8:1e3::]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id bbdd354a-736e-11ea-b58d-bc764e2007e4; Tue, 31 Mar 2020 16:43:22 +0000 (UTC) Received: from [172.18.45.5] (helo=zealot.relativity.greenend.org.uk) by chiark.greenend.org.uk (Debian Exim 4.84_2 #1) with esmtp (return-path ijackson@chiark.greenend.org.uk) id 1jJJyz-0003wI-W5; Tue, 31 Mar 2020 17:43:22 +0100 From: Ian Jackson To: xen-devel@lists.xenproject.org Subject: [OSSTEST PATCH v2 2/2] host props/flags: Save for commissioning flights too Date: Tue, 31 Mar 2020 17:43:18 +0100 Message-Id: <20200331164318.4651-2-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20200331164318.4651-1-ian.jackson@eu.citrix.com> References: <20200331164318.4651-1-ian.jackson@eu.citrix.com> X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Ian Jackson Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Obviously we want this! Signed-off-by: Ian Jackson --- Osstest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Osstest.pm b/Osstest.pm index 54f0085c..1e381d8f 100644 --- a/Osstest.pm +++ b/Osstest.pm @@ -411,7 +411,7 @@ sub blessing_must_not_modify_host ($) { # returns '' (falseish) if we may modify a host's props etc., # or a trueish string message if may not my ($intended_blessing) = @_; - return '' if $intended_blessing eq "real"; + return '' if $intended_blessing =~ qr{^real$|^commission-}; return "intended blessing $intended_blessing != real"; }