From cf5f9bb8402906d37cdd55e8b06da9c7b5ac06a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 19 Nov 2016 22:45:23 -0500 Subject: [PATCH] test-functions: also add qemu define for ppc64 --- test/test-functions | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test-functions b/test/test-functions index c0128b8b005..fd7c1981667 100644 --- a/test/test-functions +++ b/test/test-functions @@ -40,6 +40,9 @@ function find_qemu_bin() { # i386 version of QEMU [ "$QEMU_BIN" ] || QEMU_BIN=$(which -a qemu 2>/dev/null | grep '^/' -m1) ;; + ppc64*) + [ "$QEMU_BIN" ] || QEMU_BIN=$(which -a qemu-system-$ARCH 2>/dev/null | grep '^/' -m1) + ;; esac if [ ! -e "$QEMU_BIN" ]; then