From 39cdc1469d192e48bf5e1b39fc51a42c64e46ab6 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 23 Sep 2020 13:22:08 +0200 Subject: [PATCH] tests: add check for rename of cached vdopool --- test/shell/lvcreate-vdo-cache.sh | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/test/shell/lvcreate-vdo-cache.sh b/test/shell/lvcreate-vdo-cache.sh index b502986b4..c31ccccda 100644 --- a/test/shell/lvcreate-vdo-cache.sh +++ b/test/shell/lvcreate-vdo-cache.sh @@ -32,10 +32,22 @@ export MKE2FS_CONFIG="$TESTDIR/lib/mke2fs.conf" aux prepare_vg 1 9000 -lvcreate --vdo -L4G -V2G --name $lv1 $vg/vpool +lvcreate --vdo -L4G -V2G --name $lv1 $vg/vpool1 # Test caching VDOPoolLV -lvcreate -H -L10 $vg/vpool +lvcreate -H -L10 $vg/vpool1 + +# Current VDO target driver cannot handle online rename +# once this will be supported - update this test +not lvrename $vg/vpool1 $vg/vpool 2>&1 | tee out +grep "Cannot rename" out + +lvchange -an $vg + +# Ofline should work +lvrename $vg/vpool1 $vg/vpool + +lvchange -ay $vg mkfs.ext4 -E nodiscard "$DM_DEV_DIR/$vg/$lv1"