mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-18 10:04:20 +03:00
tests: use prepare_vg more often
This commit is contained in:
parent
8c9c6ab660
commit
3dd6e2c7e1
@ -25,12 +25,10 @@ export LVM_TEST_THIN_REPAIR_CMD=${LVM_TEST_THIN_REPAIR_CMD-/bin/false}
|
||||
#
|
||||
aux have_thin 1 1 0 || skip
|
||||
|
||||
aux prepare_pvs 2 64
|
||||
aux prepare_vg 2 64
|
||||
|
||||
aux extend_filter_LVMTEST
|
||||
|
||||
vgcreate $vg -s 64K $(cat DEVICES)
|
||||
|
||||
# Create named pool only
|
||||
lvcreate -l1 --discards ignore -T $vg/pool
|
||||
check lv_field $vg/pool discards "ignore"
|
||||
|
@ -16,9 +16,7 @@ SKIP_WITH_LVMPOLLD=1
|
||||
|
||||
. lib/inittest
|
||||
|
||||
aux prepare_pvs 1
|
||||
|
||||
vgcreate -s 256k $vg $(cat DEVICES)
|
||||
aux prepare_vg 1
|
||||
|
||||
lvcreate --type error -L1 -n $lv1 $vg
|
||||
lvextend -L+1 $vg/$lv1
|
||||
|
@ -123,8 +123,7 @@ test_lvconvert() {
|
||||
fi
|
||||
}
|
||||
|
||||
aux prepare_pvs 5 5
|
||||
vgcreate -s 32k $vg $(cat DEVICES)
|
||||
aux prepare_vg 5 5
|
||||
|
||||
MIRRORED="mirrored"
|
||||
# FIXME: Cluster is not supporting exlusive activation of mirrored log
|
||||
|
@ -28,8 +28,7 @@ get_image_pvs() {
|
||||
aux raid456_replace_works || skip
|
||||
aux have_raid 1 3 0 || skip
|
||||
|
||||
aux prepare_pvs 7 # 7 devices for 2 dev replacement of 5-dev RAID6
|
||||
vgcreate -s 256k $vg $(cat DEVICES)
|
||||
aux prepare_vg 7 # 7 devices for 2 dev replacement of 5-dev RAID6
|
||||
|
||||
levels="5 6"
|
||||
aux have_raid4 && levels="4 5 6"
|
||||
|
@ -23,9 +23,7 @@ lv_devices() {
|
||||
########################################################
|
||||
aux have_raid 1 3 0 || skip
|
||||
|
||||
aux prepare_pvs 6 20 # 6 devices for RAID10 (2-mirror,3-stripe) test
|
||||
vgcreate -s 512k $vg $(cat DEVICES)
|
||||
|
||||
aux prepare_vg 6 20 # 6 devices for RAID10 (2-mirror,3-stripe) test
|
||||
#
|
||||
# Create RAID10:
|
||||
#
|
||||
|
@ -27,9 +27,7 @@ test -n "$LVM_TEST_THIN_RESTORE_CMD" || LVM_TEST_THIN_RESTORE_CMD=$(which thin_r
|
||||
|
||||
aux have_thin 1 10 0 || skip
|
||||
|
||||
aux prepare_pvs 3 256
|
||||
|
||||
vgcreate -s 1M $vg $(cat DEVICES)
|
||||
aux prepare_vg 3 256
|
||||
|
||||
aux lvmconf 'activation/thin_pool_autoextend_percent = 30' \
|
||||
'activation/thin_pool_autoextend_threshold = 70'
|
||||
|
@ -15,11 +15,13 @@ SKIP_WITH_LVMPOLLD=1
|
||||
|
||||
. lib/inittest
|
||||
|
||||
# check we can talk to lvmetad
|
||||
(echo | aux lvmetad_talk) || skip
|
||||
|
||||
aux prepare_pvs 2
|
||||
vgcreate $vg1 "$dev1" "$dev2"
|
||||
lvcreate -n bar -l 1 $vg1
|
||||
|
||||
(echo | aux lvmetad_talk) || skip
|
||||
aux lvmetad_dump | tee lvmetad.txt
|
||||
|
||||
grep $vg1 lvmetad.txt
|
||||
|
@ -23,9 +23,7 @@ aux have_thin 1 2 0 || skip
|
||||
# Pretend we miss the external_origin_extend feature
|
||||
aux lvmconf 'global/thin_disabled_features = [ "external_origin_extend" ]'
|
||||
|
||||
aux prepare_pvs 2
|
||||
|
||||
vgcreate -s 1M $vg $(cat DEVICES)
|
||||
aux prepare_vg 2
|
||||
|
||||
lvcreate -L10 -n $lv1 $vg
|
||||
|
||||
|
@ -18,9 +18,7 @@ export LVM_TEST_THIN_REPAIR_CMD=${LVM_TEST_THIN_REPAIR_CMD-/bin/false}
|
||||
|
||||
aux have_thin 1 10 0 || skip
|
||||
|
||||
aux prepare_pvs 3 1256
|
||||
|
||||
vgcreate -s 1M $vg $(cat DEVICES)
|
||||
aux prepare_vg 3 1256
|
||||
|
||||
for deactivate in true false; do
|
||||
# Create some thin volumes
|
||||
|
@ -17,8 +17,7 @@ SKIP_WITH_LVMLOCKD=1
|
||||
|
||||
which md5sum || skip
|
||||
|
||||
aux prepare_pvs 5 20
|
||||
vgcreate -s 256k $vg $(cat DEVICES)
|
||||
aux prepare_vg 5 20
|
||||
|
||||
# Each of the following tests does:
|
||||
# 1) Create two LVs - one linear and one other segment type
|
||||
|
@ -42,9 +42,7 @@ which mkfs.ext4 || skip
|
||||
export MKE2FS_CONFIG="$TESTOLDPWD/lib/mke2fs.conf"
|
||||
|
||||
aux prepare_dmeventd
|
||||
aux prepare_pvs 2 64
|
||||
|
||||
vgcreate $vg -s 64K $(cat DEVICES)
|
||||
aux prepare_vg 2 64
|
||||
|
||||
# Create named pool only
|
||||
lvcreate --errorwhenfull y -L2 -T $vg/pool
|
||||
|
@ -23,9 +23,7 @@ which md5sum || skip
|
||||
|
||||
aux have_thin 1 0 0 || skip
|
||||
|
||||
aux prepare_pvs 2 20
|
||||
|
||||
vgcreate -s 512K $vg $(< DEVICES)
|
||||
aux prepare_vg 2 20
|
||||
|
||||
lvcreate -L1M -V2M -n $lv1 -T $vg/pool
|
||||
|
||||
|
@ -18,9 +18,7 @@ SKIP_WITH_LVMPOLLD=1
|
||||
|
||||
which md5sum || skip
|
||||
|
||||
aux prepare_pvs 1
|
||||
|
||||
vgcreate -s 256k $vg $(cat DEVICES)
|
||||
aux prepare_vg 1
|
||||
|
||||
lvcreate --type zero -L1 -n $lv1 $vg
|
||||
lvextend -L+1 $vg/$lv1
|
||||
|
Loading…
x
Reference in New Issue
Block a user