Lines Matching full:qemu
9 qemu_pid_file=$(mktemp /tmp/__perf_kvm_test.qemu.pid.XXXXX)
127 # Find qemu
129 qemu="qemu-system-x86_64"
131 qemu="qemu-system-aarch64"
133 qemu="qemu-system-s390x"
135 qemu="qemu-system-ppc64"
137 qemu="qemu-system-$(uname -m)"
140 if ! which -s "$qemu"; then
141 skip "$qemu not found"
152 echo "Starting $qemu..."
153 # Start qemu in background, detached, with pidfile
156 if ! $qemu -enable-kvm -display none -daemonize -pidfile "${qemu_pid_file}" -monitor none; then
157 echo "Failed to start qemu"
162 # Wait a bit for qemu to start
167 echo "Qemu process failed to stay alive"