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/060 | |
parent | 6542aa9c75bcef5a549b8ac1ce34d0ec6782a3c2 (diff) | |
download | hqemu-1f7bf7d0687f5a58613358f5e7cfd8f29a3a21e2.zip hqemu-1f7bf7d0687f5a58613358f5e7cfd8f29a3a21e2.tar.gz |
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/060')
-rwxr-xr-x | tests/qemu-iotests/060 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/060 b/tests/qemu-iotests/060 index bbb1909..af8ed9f 100755 --- a/tests/qemu-iotests/060 +++ b/tests/qemu-iotests/060 @@ -40,7 +40,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 # This tests qocw2-specific low-level functionality _supported_fmt qcow2 -_supported_proto generic +_supported_proto file _supported_os Linux rt_offset=65536 # 0x10000 (XXX: just an assumption) |