diff options
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/qemu-iotests/259 | 2 | ||||
| -rw-r--r-- | tests/qemu-iotests/common.rc | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/qemu-iotests/259 b/tests/qemu-iotests/259 index 76cde429c4..1b15e8fb48 100755 --- a/tests/qemu-iotests/259 +++ b/tests/qemu-iotests/259 @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# group: rw auto quick +# group: rw quick # # Test generic image creation fallback (by using NBD) # diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index 77c37e8312..65cdba5723 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -885,7 +885,9 @@ _unsupported_imgopts() { for bad_opt do - if echo "$IMGOPTS" | grep -q 2>/dev/null "$bad_opt" + # Add a space so tests can match for whitespace that marks the + # end of an option (\b or \> are not portable) + if echo "$IMGOPTS " | grep -q 2>/dev/null "$bad_opt" then _notrun "not suitable for image option: $bad_opt" fi |