From patchwork Fri Apr 26 16:39:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 10919399 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 3E21214C0 for ; Fri, 26 Apr 2019 16:42:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2E64628DEB for ; Fri, 26 Apr 2019 16:42:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 227B028E04; Fri, 26 Apr 2019 16:42:59 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id CD16B28DEB for ; Fri, 26 Apr 2019 16:42:58 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hK3uk-00086f-2j; Fri, 26 Apr 2019 16:41:30 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hK3ui-00085i-Rb for xen-devel@lists.xenproject.org; Fri, 26 Apr 2019 16:41:28 +0000 X-Inumbo-ID: 212b8e30-6842-11e9-86e3-13b5ef7dec5c Received: from SMTP03.CITRIX.COM (unknown [162.221.156.55]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 212b8e30-6842-11e9-86e3-13b5ef7dec5c; Fri, 26 Apr 2019 16:41:25 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.60,398,1549929600"; d="scan'208";a="84519676" From: Ian Jackson To: Date: Fri, 26 Apr 2019 17:39:51 +0100 Message-ID: <20190426164002.22381-5-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190426164002.22381-1-ian.jackson@eu.citrix.com> References: <20190426164002.22381-1-ian.jackson@eu.citrix.com> MIME-Version: 1.0 Subject: [Xen-devel] [OSSTEST PATCH 04/15] arch replumbing: Provide $ho->{Arch} and $gho->{Arch} 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" X-Virus-Scanned: ClamAV using ClamSMTP With existing flights these are $r{arch} and GUEST_arch. Nothing uses these yet. Signed-off-by: Ian Jackson --- Osstest/TestSupport.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 6ab64d56..16c17e37 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -1164,6 +1164,7 @@ sub selecthost ($) { NestingLevel => 0, Info => [], }; + $ho->{Arch} = target_var($ho, 'arch') or warn "unknown arch for $ident"; if (defined $job) { $ho->{Suite} = target_var($ho, "suite") // $c{DebianSuite}; $ho->{DiVersion} = target_var($ho, "di_version") @@ -1795,6 +1796,7 @@ sub selectguest ($$) { Host => $ho, Suite => $r{"${gn}_suite"}, }; + $ho->{Arch} = target_var($ho, 'arch') or warn "unknown arch for $gn"; foreach my $opt (guest_var_commalist($gho,'options')) { $gho->{Options}{$opt}++; }