mirror of https://github.com/xemu-project/xemu.git
tests/qemu-iotests: Fix some tests that use --image-opts for other protocols
Tests 263, 284 and detect-zeroes-registered-buf use qemu-io with --image-opts so we have to enforce IMGOPTSSYNTAX=true here to get $TEST_IMG in shape for other protocols than "file". Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20240315111108.153201-9-thuth@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
9677061ef1
commit
cff614087d
|
@ -34,6 +34,8 @@ _cleanup()
|
|||
}
|
||||
trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||
|
||||
IMGOPTSSYNTAX=true
|
||||
|
||||
# get standard environment, filters and checks
|
||||
. ./common.rc
|
||||
. ./common.filter
|
||||
|
@ -73,7 +75,7 @@ echo "testing LUKS qcow2 encryption"
|
|||
echo
|
||||
|
||||
_make_test_img --object $SECRET -o "encrypt.format=luks,encrypt.key-secret=sec0,encrypt.iter-time=10,cluster_size=64K" $size
|
||||
_run_test "driver=$IMGFMT,encrypt.key-secret=sec0,file.filename=$TEST_IMG"
|
||||
_run_test "$TEST_IMG,encrypt.key-secret=sec0"
|
||||
_cleanup_test_img
|
||||
|
||||
echo
|
||||
|
@ -82,7 +84,7 @@ echo
|
|||
|
||||
|
||||
_make_test_img --object $SECRET -o "encrypt.format=aes,encrypt.key-secret=sec0,cluster_size=64K" $size
|
||||
_run_test "driver=$IMGFMT,encrypt.key-secret=sec0,file.filename=$TEST_IMG"
|
||||
_run_test "$TEST_IMG,encrypt.key-secret=sec0"
|
||||
_cleanup_test_img
|
||||
|
||||
|
||||
|
|
|
@ -33,6 +33,8 @@ _cleanup()
|
|||
}
|
||||
trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||
|
||||
IMGOPTSSYNTAX=true
|
||||
|
||||
# get standard environment, filters and checks
|
||||
. ./common.rc
|
||||
. ./common.filter
|
||||
|
@ -47,14 +49,12 @@ size=1M
|
|||
|
||||
SECRET="secret,id=sec0,data=astrochicken"
|
||||
|
||||
IMGSPEC="driver=$IMGFMT,file.filename=$TEST_IMG,encrypt.key-secret=sec0"
|
||||
QEMU_IO_OPTIONS=$QEMU_IO_OPTIONS_NO_FMT
|
||||
|
||||
_run_test()
|
||||
{
|
||||
IMGOPTSSYNTAX=true
|
||||
OLD_TEST_IMG="$TEST_IMG"
|
||||
TEST_IMG="driver=$IMGFMT,file.filename=$TEST_IMG,encrypt.key-secret=sec0"
|
||||
TEST_IMG="$TEST_IMG,encrypt.key-secret=sec0"
|
||||
QEMU_IMG_EXTRA_ARGS="--image-opts --object $SECRET"
|
||||
|
||||
echo
|
||||
|
@ -78,7 +78,6 @@ _run_test()
|
|||
|
||||
TEST_IMG="$OLD_TEST_IMG"
|
||||
QEMU_IMG_EXTRA_ARGS=
|
||||
IMGOPTSSYNTAX=
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -36,6 +36,8 @@ _cleanup()
|
|||
}
|
||||
trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||
|
||||
IMGOPTSSYNTAX=true
|
||||
|
||||
# get standard environment, filters and checks
|
||||
cd ..
|
||||
. ./common.rc
|
||||
|
@ -46,7 +48,7 @@ _supported_proto generic
|
|||
|
||||
size=128M
|
||||
_make_test_img $size
|
||||
IMGSPEC="driver=$IMGFMT,file.filename=$TEST_IMG,discard=unmap,detect-zeroes=unmap"
|
||||
IMGSPEC="$TEST_IMG,discard=unmap,detect-zeroes=unmap"
|
||||
|
||||
echo
|
||||
echo "== writing zero buffer to image =="
|
||||
|
|
Loading…
Reference in New Issue