diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2016-11-20 19:38:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-20 19:38:58 +0300 |
commit | 270f419316758162bfead87608cbaeeb4fd6987e (patch) | |
tree | 47b8efe91c3326345d861f888ad59a38a44d502e /test | |
parent | 3f59367e6fae0ba991d1e287a0f784ecdcda79af (diff) | |
parent | cf5f9bb8402906d37cdd55e8b06da9c7b5ac06a5 (diff) |
Merge pull request #4691 from keszybz/test-suite-fixes
Test suite fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/test-functions | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test-functions b/test/test-functions index c0128b8b00..fd7c198166 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 |