diff options
author | Nir Soffer | 2019-08-27 19:34:32 +0200 |
---|---|---|
committer | Max Reitz | 2019-09-03 14:56:06 +0200 |
commit | 755c5fe79d88717600356d3edf04835bba43dcb6 (patch) | |
tree | a7e89c082feab36e4aaef3235f482c17fbd59ad5 /tests/qemu-iotests/026 | |
parent | tests/check-block: Skip iotests when sanitizers are enabled (diff) | |
download | qemu-755c5fe79d88717600356d3edf04835bba43dcb6.tar.gz qemu-755c5fe79d88717600356d3edf04835bba43dcb6.tar.xz qemu-755c5fe79d88717600356d3edf04835bba43dcb6.zip |
iotests: Unify cache mode quoting
Quoting cache mode is not needed, and most tests use unquoted values.
Unify all test to use the same style.
Message-id: 20190827173432.7656-1-nsoffer@redhat.com
Signed-off-by: Nir Soffer <nsoffer@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/026')
-rwxr-xr-x | tests/qemu-iotests/026 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/026 b/tests/qemu-iotests/026 index e30243608b..ffb18ab6b5 100755 --- a/tests/qemu-iotests/026 +++ b/tests/qemu-iotests/026 @@ -41,8 +41,8 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 # Currently only qcow2 supports rebasing _supported_fmt qcow2 _supported_proto file -_default_cache_mode "writethrough" -_supported_cache_modes "writethrough" "none" +_default_cache_mode writethrough +_supported_cache_modes writethrough none # The refcount table tests expect a certain minimum width for refcount entries # (so that the refcount table actually needs to grow); that minimum is 16 bits, # being the default refcount entry width. |