Message ID | 20201001162439.18160-5-iwj@xenproject.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [OSSTEST,1/8] Executive: Fix an undef warning message | expand |
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 <http://www.gnu.org/licenses/>. 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 $!; ' }
No functional change. This will be useful in a moment. Signed-off-by: Ian Jackson <iwj@xenproject.org> --- cri-getplatforms | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)