From: Ian Jackson Date: Thu, 1 Oct 2020 15:35:56 +0000 (+0100) Subject: cri-getplatforms: Give names to xenarch and suite X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5e35c655742e5f26dec153d0fabb59abf237365c;p=people%2Faperard%2Fosstest.git cri-getplatforms: Give names to xenarch and suite No functional change. This will be useful in a moment. Signed-off-by: Ian Jackson --- diff --git a/cri-getplatforms b/cri-getplatforms index 2b8cee0b..1f206908 100755 --- a/cri-getplatforms +++ b/cri-getplatforms @@ -17,9 +17,11 @@ # along with this program. If not, see . getplatforms () { + local xenarch=$1 + local suite=$2 perl -e ' use Osstest; csreadconfig(); - print join " ", $mhostdb->get_arch_platforms("'$blessing'", "'$1'", "'$2'") or die $!; + print join " ", $mhostdb->get_arch_platforms("'$blessing'", "'$xenarch'", "'$suite'") or die $!; ' }