1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

TEST: Test was trying to kill 2 devices in RAID5 instead of RAID6

Segment type being used for test should have been 'raid6'.
This commit is contained in:
Jonathan Brassow 2013-10-18 09:33:37 -05:00
parent 546db1c4be
commit 7763607f36

View File

@ -29,7 +29,7 @@ vgextend $vg "$dev3"
lvremove -ff $vg
# RAID6 double replace
lvcreate --type raid5 -i 3 -l 2 -n $lv1 $vg \
lvcreate --type raid6 -i 3 -l 2 -n $lv1 $vg \
"$dev1" "$dev2" "$dev3" "$dev4" "$dev5"
aux wait_for_sync $vg $lv1
aux disable_dev "$dev4" "$dev5"