diff options
author | greg@kroah.com <greg@kroah.com> | 2003-12-03 08:13:53 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:05 -0700 |
commit | 72ffa78debb1f96488b5e13d3151486563b460e7 (patch) | |
tree | a97c1824b99327829875e5a494bee1c58577dc1d /test/modifier_test | |
parent | 3836a3c49a72b9ee0b092725628f30839f100c4f (diff) |
[PATCH] fix up the tests to work without all of the environ variables.
Diffstat (limited to 'test/modifier_test')
-rw-r--r-- | test/modifier_test | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/test/modifier_test b/test/modifier_test index a028d20e4d..bbe072e58c 100644 --- a/test/modifier_test +++ b/test/modifier_test @@ -1,13 +1,22 @@ #!/bin/bash +RULES=modifier_test.rules +CONFIG=modifier_test.conf + export UDEV_TEST=yes export SYSFS_PATH=$PWD/sys/ -export UDEV_CONFIG_DIR=$PWD/ -export UDEV_ROOT=$PWD/udev/ -export UDEV_DB=udev.tdb -export UDEV_CONFIG_FILE=modifier_test.config -export UDEV_RULES_FILE=modifier_test.rules -export UDEV_PERMISSION_FILE=udev.permissions +export UDEV_CONFIG_FILE=$PWD/$CONFIG + +cat > $RULES << EOF +TOPOLOGY, BUS="scsi", place="0:0:0:0", NAME="Major:%M:minor:%m:kernelnumber:%n:bus:%b" +EOF + +cat > $CONFIG << EOF +udev_root="$PWD/udev/" +udev_db="$PWD/udev/.udev.tdb" +udev_rules="$PWD/$RULES" +udev_permissions="$PWD/udev.permissions" +EOF export ACTION=add export DEVPATH=block/sda @@ -31,3 +40,5 @@ export DEVPATH=block/sda/sda3 ../udev block ls udev +rm $RULES +rm $CONFIG |