diff options
Diffstat (limited to 'tests/qemu-iotests/common')
-rw-r--r-- | tests/qemu-iotests/common | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/qemu-iotests/common b/tests/qemu-iotests/common index d95ba4cddc..c187f6c573 100644 --- a/tests/qemu-iotests/common +++ b/tests/qemu-iotests/common @@ -43,6 +43,7 @@ randomize=false rm -f $tmp.list $tmp.tmp $tmp.sed export IMGFMT=raw +export IMGPROTO=file export QEMU_IO_OPTIONS="" for r @@ -123,6 +124,8 @@ check options -vdi test vdi -vpc test vpc -vmdk test vmdk + -rbd test rbd + -sheepdog test sheepdog -xdiff graphical mode diff -nocache use O_DIRECT on backing file -misalign misalign memory allocations @@ -179,6 +182,16 @@ testlist options xpand=false ;; + -rbd) + IMGPROTO=rbd + xpand=false + ;; + + -sheepdog) + IMGPROTO=sheepdog + xpand=false + ;; + -nocache) QEMU_IO_OPTIONS="$QEMU_IO_OPTIONS --nocache" xpand=false |