summaryrefslogtreecommitdiffstats
path: root/debian/tests/test-qemu-system.sh
blob: eca40951ca9a921992612095f945af3c4412c7b3 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

for ARCH in x86_64 i386; do
    echo -n "Checking for pc in ${ARCH}..."
    qemu-system-${ARCH} -M help | grep -qs "pc\s\+Standard PC"
    echo "done."
done