]> Git Repo - qemu.git/commitdiff
iotests: Fix 232 for LUKS
authorMax Reitz <[email protected]>
Sun, 10 Feb 2019 14:57:30 +0000 (15:57 +0100)
committerMax Reitz <[email protected]>
Mon, 25 Feb 2019 14:11:28 +0000 (15:11 +0100)
With IMGOPTSSYNTAX, $TEST_IMG is useless for this test (it only tests
the file-posix protocol driver).  Therefore, if $TEST_IMG_FILE is set,
use that instead.

Because this test requires the file protocol, $TEST_IMG_FILE will always
be set if $IMGOPTSSYNTAX is true.

Signed-off-by: Max Reitz <[email protected]>
Reviewed-by: John Snow <[email protected]>
Message-id: 20190210145736[email protected]
Signed-off-by: Max Reitz <[email protected]>
tests/qemu-iotests/232

index 93e5d641a300a37e97cfce301fe91aa8995015d7..e48bc8f5db2bdfc6fd9847d70735a9d99668007c 100755 (executable)
@@ -69,6 +69,10 @@ size=128M
 
 _make_test_img $size
 
+if [ -n "$TEST_IMG_FILE" ]; then
+    TEST_IMG=$TEST_IMG_FILE
+fi
+
 echo
 echo "=== -drive with read-write image: read-only/auto-read-only combinations ==="
 echo
This page took 0.027203 seconds and 4 git commands to generate.