From: Zdenek Kabelac Date: Sat, 24 Sep 2011 21:15:13 +0000 (+0000) Subject: Allow overwrite for VERIFY_UDEV X-Git-Tag: v2_02_91~491 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=102dd99ca4d82090e62af55ae3d4d5aaaa0c527e;p=lvm2.git 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 --- diff --git a/test/lib/aux.sh b/test/lib/aux.sh index 7ef20b936..b8028bf35 100644 --- a/test/lib/aux.sh +++ b/test/lib/aux.sh @@ -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