]> Git Repo - qemu.git/commitdiff
qemu-iotests: skip test 005 for vpc format images
authorChristoph Hellwig <[email protected]>
Fri, 3 Jul 2009 15:41:58 +0000 (17:41 +0200)
committerKevin Wolf <[email protected]>
Wed, 22 Feb 2012 15:16:59 +0000 (16:16 +0100)
The vpc format doesn't support large enough image size for this test.

Signed-off-by: Kevin Wolf <[email protected]>
tests/qemu-iotests/005

index e3458fde048658f34529d246a57467122bc755b2..148f936bf3ae8269de3ad017e6afea998f5779c4 100755 (executable)
@@ -43,10 +43,13 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
 . ./common.rc
 . ./common.filter
 
-# vpc is limited to 127GB, so we can't test it here
 _supported_fmt generic
 _supported_os Linux
 
+# vpc is limited to 127GB, so we can't test it here
+if [ "$IMGFMT" = "vpc" ]; then
+    _notrun "image format $IMGFMT does not support large image sizes"
+fi
 
 echo
 echo "creating large image"
This page took 0.027641 seconds and 4 git commands to generate.