]> sourceware.org Git - lvm2.git/commitdiff
tests: use exclusive activation
authorZdenek Kabelac <zkabelac@redhat.com>
Wed, 14 Jun 2017 11:59:11 +0000 (13:59 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Fri, 16 Jun 2017 15:04:02 +0000 (17:04 +0200)
Conversion needs exlusively active LV for clustered testing.

test/shell/lvconvert-raid-takeover-alloc-failure.sh

index 3870c35c80a8edfc9dd72cc4ad8c0fb93bb09df7..cf926a1ad84a47c87c8a1e4b04a56f2f09dbd1c3 100644 (file)
@@ -48,7 +48,7 @@ function check_no_sub_lvs
 # Check takover upconversion fails allocation errors nicely without leaving image pair remnants behind
 
 # 6-way striped: neither conversion to raid5 nor raid6 possible
-lvcreate --yes --stripes 6 --size 4M --name $lv1 $vg
+lvcreate -aey --yes --stripes 6 --size 4M --name $lv1 $vg
 not lvconvert --yes --type raid4 $vg/$lv1
 check lv_field $vg/$lv1 segtype "striped"
 check_no_sub_lvs $vg $lv1 0 5
@@ -69,7 +69,7 @@ check_sub_lvs $vg $lv1 0 5
 lvremove -y $vg
 
 # 5-way striped: conversion to raid5 possible but not to raid6
-lvcreate --yes --stripes 5 --size 4M --name $lv1 $vg
+lvcreate -aey --stripes 5 --size 4M --name $lv1 $vg
 not lvconvert --yes --type raid6 $vg/$lv1
 check lv_field $vg/$lv1 segtype "striped"
 check_no_sub_lvs $vg $lv1 0 5
@@ -83,7 +83,7 @@ check_sub_lvs $vg $lv1 0 5
 lvremove -y $vg
 
 # 4-way striped: conversion to raid5 and raid6 possible
-lvcreate --yes --stripes 4 --size 4M --name $lv1 $vg
+lvcreate -aey --stripes 4 --size 4M --name $lv1 $vg
 lvconvert --yes --type raid5 $vg/$lv1
 check lv_field $vg/$lv1 segtype "raid5_n"
 check lv_field $vg/$lv1 stripes 5
@@ -92,7 +92,8 @@ check_sub_lvs $vg $lv1 0 4
 check_no_sub_lvs $vg $lv1 5 5
 
 lvremove -y $vg
-lvcreate --yes --stripes 4 --size 4M --name $lv1 $vg
+
+lvcreate -aey --stripes 4 --size 4M --name $lv1 $vg
 lvconvert --yes --type raid6 $vg/$lv1
 check lv_field $vg/$lv1 segtype "raid6_n_6"
 check lv_field $vg/$lv1 stripes 6
This page took 0.039425 seconds and 5 git commands to generate.