diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-03-14 19:57:24 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-04-05 15:10:06 +0200 |
commit | 28d3d1658a3692f9c34c3ecce14941faa1d2fe92 (patch) | |
tree | 0344637a6645c69a9d070ffa1cb3facf0594dcf0 /tests/qemu-iotests/009 | |
parent | 21af81488799e2290cb2e58eb2a91d1d8044ebc4 (diff) |
qemu-iotests: Fix call syntax for qemu-io
qemu-io requires options first, then fixed parameters.
GNU getopt also allows options at the end, but POSIX getopt
doesn't. Try "export POSIXLY_CORRECT=y" to get the POSIX
behaviour with GNU getopt, too.
Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/009')
-rwxr-xr-x | tests/qemu-iotests/009 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/009 b/tests/qemu-iotests/009 index f7262b57bf..25368c819b 100755 --- a/tests/qemu-iotests/009 +++ b/tests/qemu-iotests/009 @@ -53,10 +53,10 @@ _make_test_img $size echo echo "creating pattern" $QEMU_IO \ - -c "write 2048k 4k -P 65" \ + -c "write -P 65 2048k 4k" \ -c "write 4k 4k" \ -c "write 9M 4k" \ - -c "read 2044k 8k -P 65 -s 4k -l 4k" \ + -c "read -P 65 -s 4k -l 4k 2044k 8k" \ $TEST_IMG | _filter_qemu_io echo |