diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2018-05-06 10:46:15 -0500 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2018-05-06 11:25:36 -0500 |
commit | a18249182fbeb5887b2a9149201b73501d58ef83 (patch) | |
tree | 81401616cba1585c59bb3c22c4f3afdfa72ac27d | |
parent | 0e27cc8410e22b6400f3e709697eb51c7d02b289 (diff) | |
download | skiboot-a18249182fbeb5887b2a9149201b73501d58ef83.zip skiboot-a18249182fbeb5887b2a9149201b73501d58ef83.tar.gz skiboot-a18249182fbeb5887b2a9149201b73501d58ef83.tar.bz2 |
test: qemu-debian-jessie boot: fix qemu-img
We can just use whatever qemu-img binary that's laying around,
including the distro one.
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rwxr-xr-x | test/run_qemu-jessie-debian-installer_boot_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_qemu-jessie-debian-installer_boot_test.sh b/test/run_qemu-jessie-debian-installer_boot_test.sh index 57e9d82..da946e6 100755 --- a/test/run_qemu-jessie-debian-installer_boot_test.sh +++ b/test/run_qemu-jessie-debian-installer_boot_test.sh @@ -36,7 +36,7 @@ D=`mktemp --tmpdir debian-jessie-install.qcow2.XXXXXXXXXX` # In future we should do full install: # FIXME: -append "DEBIAN_FRONTEND=text locale=en_US keymap=us hostname=OPALtest domain=unassigned-domain rescue/enable=true" -$QEMU_PATH/../qemu-img create -f qcow2 $D 128G 2>&1 > $T +qemu-img create -f qcow2 $D 128G 2>&1 > $T ( cat <<EOF | expect set timeout 600 |