diff options
author | Peter Lieven <pl@kamp.de> | 2014-02-03 10:26:14 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-02-09 09:12:38 +0100 |
commit | 1f7bf7d0687f5a58613358f5e7cfd8f29a3a21e2 (patch) | |
tree | 01d4b8a1940ec060326fb8c39f9fcb0a9a998e30 /tests/qemu-iotests/052 | |
parent | 6542aa9c75bcef5a549b8ac1ce34d0ec6782a3c2 (diff) | |
download | qemu-1f7bf7d0687f5a58613358f5e7cfd8f29a3a21e2.zip |
qemu-iotests: change _supported_proto to file for various tests
all these tests do anything of the following and thus fail with any
protocol other than file:
- the tests use rm, cp or mv shell commands which only work on file
- the tests use qcow2.py
- the images construct new filenames (e.g. backing file names) and
the logic is broken for anything else than file
Signed-off-by: Peter Lieven <pl@kamp.de>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/052')
-rwxr-xr-x | tests/qemu-iotests/052 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/052 b/tests/qemu-iotests/052 index 4d4e411339..6bdae92780 100755 --- a/tests/qemu-iotests/052 +++ b/tests/qemu-iotests/052 @@ -39,7 +39,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.filter _supported_fmt generic -_supported_proto generic +_supported_proto file _supported_os Linux _default_cache_mode "writethrough" _supported_cache_modes "writethrough" |