1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

Add test for rhbz440405 - lvconvert -m0 fails incorrectly if all PEs allocated.

This commit is contained in:
Dave Wysochanski 2008-04-23 18:27:59 +00:00
parent 8e8baf89c0
commit 505e6bc117

View File

@ -387,6 +387,16 @@ test_expect_success "remove from original mirror (the original becomes linear)"
mirrorlog_is_on_ $vg/$lv1 $(pv_ 3) &&
check_and_cleanup_lvs_'
test_expect_success "rhbz440405: lvconvert -m0 incorrectly fails if all PEs allocated" \
'prepare_lvs_ &&
lvcreate -l`pvs --noheadings -ope_count $(pv_ 1)` -m1 -n $lv1 $vg $(pv_ 1) $(pv_ 2) $(pv_ 3):0 &&
check_mirror_count_ $vg/$lv1 2 &&
check_mirror_log_ $vg/$lv1 &&
lvconvert -m0 $vg/$lv1 $(pv_ 1) &&
check_no_tmplvs_ $vg/$lv1 &&
check_mirror_count_ $vg/$lv1 1 &&
check_and_cleanup_lvs_'
# ---------------------------------------------------------------------
test_done