From 2b98a226b9142d398b75bb3b94a59e56889e21d2 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Mon, 19 Jul 2021 15:02:22 -0600 Subject: system test: auto-update: multiarch fixes auto-update test is failing on non-x86_64 arch: https://gitlab.com/cki-project/kernel-tests/-/issues/614#note_630010734 Reason: test was relying on alpine_nginx image; this is a custom libpod image that only has a x86_64 version. Solution: use busybox instead. Busybox was copied from docker.io using skopeo copy --all, so it has all arches. Signed-off-by: Ed Santiago --- test/system/255-auto-update.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/system/255-auto-update.bats b/test/system/255-auto-update.bats index b47e72b30..4d7a8e783 100644 --- a/test/system/255-auto-update.bats +++ b/test/system/255-auto-update.bats @@ -36,7 +36,7 @@ function teardown() { rm -f $SNAME_FILE run_podman ? rmi quay.io/libpod/alpine:latest - run_podman ? rmi quay.io/libpod/alpine_nginx:latest + run_podman ? rmi quay.io/libpod/busybox:latest run_podman ? rmi quay.io/libpod/localtest:latest basic_teardown } @@ -191,7 +191,7 @@ function _confirm_update() { do local img_base="alpine" if [[ $auto_update == "registry" ]]; then - img_base="alpine_nginx" + img_base="busybox" elif [[ $auto_update == "local" ]]; then img_base="localtest" fi -- cgit v1.2.3-54-g00ecf