From 60a207f9a04925b73d0cd8b9a8c44b38fffa3b77 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Sun, 2 May 2021 23:13:29 +0200 Subject: [PATCH] qa/workunits/rbd: use bionic version of qemu-iotests for focal Currently Focal ends up with v2.2.0-rc3, which results in "WARNING: Image format was not specified for ..." for all tests and all tests fail. Fixes: https://tracker.ceph.com/issues/50605 Signed-off-by: Ilya Dryomov (cherry picked from commit 2de2146c300c9f1b49944ffe13cc249a95bca19a) --- qa/workunits/rbd/qemu-iotests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/rbd/qemu-iotests.sh b/qa/workunits/rbd/qemu-iotests.sh index ddb63dae3b5db..13af2debd8eeb 100755 --- a/qa/workunits/rbd/qemu-iotests.sh +++ b/qa/workunits/rbd/qemu-iotests.sh @@ -9,7 +9,7 @@ testlist='001 002 003 004 005 008 009 010 011 021 025 032 033 055' git clone https://github.com/qemu/qemu.git cd qemu -if lsb_release -da 2>&1 | grep -iq 'bionic'; then +if lsb_release -da 2>&1 | grep -iqE '(bionic|focal)'; then # Bionic requires a matching test harness git checkout v2.11.0 elif lsb_release -da 2>&1 | grep -iqE '(xenial|linux release 8)'; then -- 2.39.5