1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-21 22:04:19 +03:00

Allow overwrite for VERIFY_UDEV

When running tests it might be useful to have an override option when
testing on real /dev  and some broken system (i.e. Debian and its rules).

So one can use:

LVM_TEST_DEVDIR=/dev LVM_VERIFY_UDEV=1 make check
This commit is contained in:
Zdenek Kabelac 2011-09-24 21:15:13 +00:00
parent d040c17000
commit 102dd99ca4

View File

@ -371,9 +371,9 @@ prepare_vg() {
lvmconf() {
if test -z "$LVM_TEST_LOCKING"; then LVM_TEST_LOCKING=1; fi
if test "$DM_DEV_DIR" = "/dev"; then
VERIFY_UDEV=0;
LVM_VERIFY_UDEV=${LVM_VERIFY_UDEV:-0};
else
VERIFY_UDEV=1;
LVM_VERIFY_UDEV=${LVM_VERIFY_UDEV:-1};
fi
test -f CONFIG_VALUES || {
cat > CONFIG_VALUES <<-EOF
@ -401,7 +401,7 @@ global/fallback_to_local_locking = 0
activation/checks = 1
activation/udev_sync = 1
activation/udev_rules = 1
activation/verify_udev_operations = $VERIFY_UDEV
activation/verify_udev_operations = $LVM_VERIFY_UDEV
activation/polling_interval = 0
activation/snapshot_autoextend_percent = 50
activation/snapshot_autoextend_threshold = 50