diff options
author | Thomas Huth <thuth@redhat.com> | 2024-03-15 12:11:02 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2024-03-18 13:31:54 +0100 |
commit | 70877f21e746e2420727628661a506ce95da4b32 (patch) | |
tree | 8140897dbe48e0e2bd12582c04bd5d6bf8dca436 /tests/qemu-iotests/114 | |
parent | 1a74b0151707697470ecacbdbb1c47880b7cf3b1 (diff) |
tests/qemu-iotests: Restrict test 114 to the 'file' protocol
iotest 114 uses "truncate" and the qcow2.py script on the destination file,
which both cannot deal with URIs. Thus this test needs the "file" protocol,
otherwise it fails with an error message like this:
truncate: cannot open 'ssh://127.0.0.1/tmp/qemu-build/tests/qemu-iotests/scratch/qcow2-ssh-114/t.qcow2.orig'
for writing: No such file or directory
Thus mark this test for "file protocol only" accordingly.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20240315111108.153201-4-thuth@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/114')
-rwxr-xr-x | tests/qemu-iotests/114 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/114 b/tests/qemu-iotests/114 index de6fd327ee..dccc71008b 100755 --- a/tests/qemu-iotests/114 +++ b/tests/qemu-iotests/114 @@ -38,7 +38,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.filter _supported_fmt qcow2 -_supported_proto generic +_supported_proto file # At least OpenBSD doesn't seem to have truncate _supported_os Linux # qcow2.py does not work too well with external data files |