1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

tests: update thin testing

This commit is contained in:
Zdenek Kabelac 2012-11-27 01:01:38 +01:00
parent 0387e70d76
commit 2be940e549
3 changed files with 77 additions and 2 deletions

View File

@ -24,9 +24,15 @@ prepare_lvs()
# #
aux have_thin 1 0 0 || skip aux have_thin 1 0 0 || skip
aux prepare_pvs 4 6400000 aux prepare_pvs 4 64
vgcreate $vg -s 64K $(cat DEVICES) # build one large PV
vgcreate $vg1 $(cut -d ' ' -f -3 DEVICES)
lvcreate -s -l 100%FREE -n $lv $vg1 --virtualsize 64T
aux lvmconf 'devices/filter = [ "a/dev\/mapper\/.*$/", "a/dev\/LVMTEST/", "r/.*/" ]'
pvcreate "$DM_DEV_DIR/$vg1/$lv"
vgcreate $vg -s 64K $(cut -d ' ' -f 4 DEVICES) "$DM_DEV_DIR/$vg1/$lv"
# create mirrored LVs for data and metadata volumes # create mirrored LVs for data and metadata volumes
lvcreate -aey -L10M -m1 --mirrorlog core -n $lv1 $vg lvcreate -aey -L10M -m1 --mirrorlog core -n $lv1 $vg

View File

@ -0,0 +1,35 @@
#!/bin/bash
# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# test defaults entered through lvm.conf
. lib/test
#
# Main
#
aux have_thin 1 0 0 || skip
aux prepare_vg 2
lvcreate -T -L8M $vg/pool0
aux lvmconf "allocation/thin_pool_chunk_size = 128" \
"allocation/thin_pool_discards = \"ignore\"" \
"allocation/thin_pool_zero = 0"
lvcreate -T -L8M $vg/pool1
check lv_field $vg/pool1 chunksize "128.00k"
check lv_field $vg/pool1 discards "ignore"
check lv_field $vg/pool1 zero 0
vgremove -f $vg

View File

@ -0,0 +1,34 @@
#!/bin/bash
# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# test restore operation of thin pool metadata
. lib/test
#
# Main
#
aux have_thin 1 0 0 || skip
aux prepare_vg 2
lvcreate -T -L8M $vg/pool -V10M -n $lv1
vgcfgbackup -f backup $vg
# use of --force is mandatory
not vgcfgrestore -f backup $vg
vgcfgrestore -f backup --force $vg
check lv_field $vg/pool transaction_id 1
vgremove -f $vg