mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-25 01:34:38 +03:00
Add a basic test for dmeventd triggering lvconvert --repair. Needs improvement.
This commit is contained in:
parent
6120f4c507
commit
b7983d4fe2
@ -98,6 +98,14 @@ mirror() {
|
|||||||
if test -n "$3"; then mirror_log_on "$lv" "$3"; fi
|
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() {
|
linear() {
|
||||||
lv="$1/$2"
|
lv="$1/$2"
|
||||||
lvs -ostripes "$lv" | grep -q "1" || {
|
lvs -ostripes "$lv" | grep -q "1" || {
|
||||||
|
26
test/t-lvconvert-repair-dmeventd.sh
Normal file
26
test/t-lvconvert-repair-dmeventd.sh
Normal 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
|
Loading…
Reference in New Issue
Block a user