2012-03-16 17:00:05 +04:00
#!/bin/sh
2010-10-15 20:28:14 +04:00
# Copyright (C) 2010 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,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2010-10-15 20:28:14 +04:00
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2010-10-15 20:28:14 +04:00
2015-10-27 17:10:06 +03:00
. lib/inittest
2015-05-09 02:59:18 +03:00
2012-03-16 17:00:05 +04:00
which mkfs.ext2 || skip
2010-10-15 20:28:14 +04:00
extend( ) {
2012-08-27 16:04:21 +04:00
lvextend --use-policies --config " activation { snapshot_autoextend_threshold = $1 } " $vg /snap
2010-10-15 20:28:14 +04:00
}
write( ) {
2012-03-16 17:00:05 +04:00
mount " $DM_DEV_DIR / $vg /snap " mnt
dd if = /dev/zero of = " mnt/file $1 " bs = 1k count = $2
2010-10-15 20:28:14 +04:00
umount mnt
}
percent( ) {
2012-03-16 17:00:05 +04:00
get lv_field $vg /snap snap_percent | cut -d. -f1
2010-10-15 20:28:14 +04:00
}
2014-06-19 14:48:21 +04:00
# no dmeventd running in this test, testing --use-policies
2010-10-15 20:28:14 +04:00
aux prepare_vg 2
2012-03-16 17:00:05 +04:00
2013-06-15 13:21:03 +04:00
lvcreate -aey -L24 -n base $vg
2012-03-16 17:00:05 +04:00
mkfs.ext2 " $DM_DEV_DIR / $vg /base "
2010-10-15 20:28:14 +04:00
2013-06-15 13:21:03 +04:00
lvcreate -s -L16 -n snap $vg /base
2010-10-15 20:28:14 +04:00
mkdir mnt
write 1 4096
2012-03-16 17:00:05 +04:00
pre = $( percent)
2010-10-15 20:28:14 +04:00
extend 50
2012-03-16 17:00:05 +04:00
test $pre -eq $( percent)
2010-10-15 20:28:14 +04:00
write 2 4096
2012-03-16 17:00:05 +04:00
pre = $( percent)
2010-10-15 20:28:14 +04:00
extend 50
2012-03-16 17:00:05 +04:00
test $pre -gt $( percent)
vgremove -f $vg