mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
test: Disable lvmetad logging in lvconvert-{mirror,raid}*.
This commit is contained in:
parent
fa2e84caa8
commit
f0d314bd6d
@ -80,6 +80,7 @@ prepare_dmeventd() {
|
||||
}
|
||||
|
||||
prepare_lvmetad() {
|
||||
test $# -eq 0 && default_opts="-l wire,debug"
|
||||
rm -f debug.log
|
||||
# skip if we don't have our own lvmetad...
|
||||
(which lvmetad 2>/dev/null | grep "$abs_builddir") || skip
|
||||
@ -90,8 +91,10 @@ prepare_lvmetad() {
|
||||
local run_valgrind=
|
||||
test "${LVM_VALGRIND_LVMETAD:-0}" -eq 0 || run_valgrind="run_valgrind"
|
||||
|
||||
kill_sleep_kill_ LOCAL_LVMETAD ${LVM_VALGRIND_LVMETAD:-0}
|
||||
|
||||
echo "preparing lvmetad..."
|
||||
$run_valgrind lvmetad -f "$@" -s "$TESTDIR/lvmetad.socket" -l wire,debug &
|
||||
$run_valgrind lvmetad -f "$@" -s "$TESTDIR/lvmetad.socket" $default_opts "$@" &
|
||||
echo $! > LOCAL_LVMETAD
|
||||
while ! test -e "$TESTDIR/lvmetad.socket"; do echo -n .; sleep .1; done # wait for the socket
|
||||
echo ok
|
||||
|
@ -110,6 +110,8 @@ test_lvconvert() {
|
||||
fi
|
||||
}
|
||||
|
||||
# disable lvmetad logging as it bogs down test systems
|
||||
test -e LOCAL_LVMETAD && aux prepare_lvmetad ""
|
||||
|
||||
aux prepare_pvs 5 5
|
||||
vgcreate -s 32k $vg $(cat DEVICES)
|
||||
|
@ -11,6 +11,9 @@
|
||||
|
||||
. lib/inittest
|
||||
|
||||
# disable lvmetad logging as it bogs down test systems
|
||||
test -e LOCAL_LVMETAD && aux prepare_lvmetad ""
|
||||
|
||||
aux prepare_pvs 5 10
|
||||
# proper DEVRANGE needs to be set according to extent size
|
||||
DEVRANGE="0-32"
|
||||
|
@ -11,6 +11,9 @@
|
||||
|
||||
. lib/inittest
|
||||
|
||||
# disable lvmetad logging as it bogs down test systems
|
||||
test -e LOCAL_LVMETAD && aux prepare_lvmetad ""
|
||||
|
||||
get_image_pvs() {
|
||||
local d
|
||||
local images
|
||||
|
Loading…
Reference in New Issue
Block a user