summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2019-10-24 16:43:06 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2019-10-26 00:29:44 +0200
commitbc200e0b16676398eb0e2244ffa14315d25a1a5a (patch)
treea1de4edd6054647959058ce7c745edbfbc15eca9
parent36b8b9ed5c4b96d3a6482d76ca3eae54c62f9f2b (diff)
downloadlvm2-bc200e0b16676398eb0e2244ffa14315d25a1a5a.tar.gz
tests: really check disabling of lvmetad
Since lvconvert validated LV types that can be repaired, the test was not working properly for longer time...
-rw-r--r--test/shell/lvmetad-disabled.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/shell/lvmetad-disabled.sh b/test/shell/lvmetad-disabled.sh
index 84d7b5438..389d19107 100644
--- a/test/shell/lvmetad-disabled.sh
+++ b/test/shell/lvmetad-disabled.sh
@@ -55,13 +55,14 @@ grep "$dev1" out
grep "$dev2" out
not grep "WARNING: Not using lvmetad" out
-# We don't care about the repair, and we know it's
-# not valid on this lv. We are just running repair
-# because we know one side effect is to disable lvmetad.
-# FIXME: we should install lvmetactl so that we can
-# use that to directly disable lvmetad for tests like this.
-not lvconvert --repair $vg1/$lv1 2>&1 | tee out
+if aux have_raid 1 7 0 ; then
+# lvconvert validates repairable volumes.
+# We want to excercise if disabling of lvmetad works when it's running.
+# For this we create 'raid1' array and run repair on it.
+lvcreate --type raid1 -m1 --nosync -l1 --alloc anywhere -n $lv2 $vg1
+lvconvert -y --repair $vg1/$lv2 2>&1 | tee out
grep "WARNING: Disabling lvmetad cache" out
+fi
pvs -vvvv 2>&1 | tee out
grep "$dev1" out