diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2013-03-14 17:06:55 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-03-15 16:07:51 +0100 |
commit | 804dd41792c8bdc0c8b34c8e580882ff8ef736d8 (patch) | |
tree | d56b0fc0fb9c7e5109c5b40f550479b6006da726 /tests/qemu-iotests/007 | |
parent | acbf30ec601b1f817febc4500025b7c4181312c4 (diff) | |
download | hqemu-804dd41792c8bdc0c8b34c8e580882ff8ef736d8.zip hqemu-804dd41792c8bdc0c8b34c8e580882ff8ef736d8.tar.gz |
qemu-iotests: use -nographic in test case 007
A comment explains that -nographic hangs test case 007. This is no
longer the case so add -nographic. This makes the test suite faster and
more pleasant to run since no windows pop up.
I am not sure exactly when -nographic starting working for this case but
there is no fundamental reason why graphics are needed here. Make sure
the serial port is not on stdio, it would conflict with the monitor.
Also remove unnecessary trailing whitespace on these lines.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Tested-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/007')
-rwxr-xr-x | tests/qemu-iotests/007 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/qemu-iotests/007 b/tests/qemu-iotests/007 index 0139264..c454f2c 100755 --- a/tests/qemu-iotests/007 +++ b/tests/qemu-iotests/007 @@ -50,10 +50,9 @@ _make_test_img 1M for i in `seq 1 10`; do echo "savevm $i" - # XXX(hch): adding -nographic would be good, but hangs the test - $QEMU -hda $TEST_IMG -monitor stdio >/dev/null 2>&1 <<EOF -savevm test-$i -quit + $QEMU -nographic -hda $TEST_IMG -serial none -monitor stdio >/dev/null 2>&1 <<EOF +savevm test-$i +quit EOF done |