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

Add a basic test for dmeventd triggering lvconvert --repair. Needs improvement.

This commit is contained in:
Petr Rockai 2010-05-06 19:01:26 +00:00
parent b52496b7af
commit 0b0caec5f6
2 changed files with 34 additions and 0 deletions

View File

@ -98,6 +98,14 @@ mirror() {
if test -n "$3"; then mirror_log_on "$lv" "$3"; fi
}
mirror_legs() {
lv="$1/$2"
expect="$3"
lvdevices "$lv"
real=`lvdevices "$lv" | wc -w`
test "$expect" = "$real"
}
linear() {
lv="$1/$2"
lvs -ostripes "$lv" | grep -q "1" || {

View File

@ -0,0 +1,26 @@
#!/bin/bash
# Copyright (C) 2008 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-utils.sh
prepare_vg 5
prepare_dmeventd
which mkfs.ext2 || exit 200
lvcreate -m 3 --ig -L 1 -n 4way $vg
lvchange --monitor y $vg/4way
disable_dev $dev2 $dev4
mkfs.ext2 $DM_DEV_DIR/$vg/4way
sleep 3 # FIXME : - (
enable_dev $dev2 $dev4
check mirror $vg 4way
check mirror_legs $vg 4way 2