summaryrefslogtreecommitdiff
path: root/test/topo_test
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2003-12-03 08:13:53 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:13:05 -0700
commit72ffa78debb1f96488b5e13d3151486563b460e7 (patch)
treea97c1824b99327829875e5a494bee1c58577dc1d /test/topo_test
parent3836a3c49a72b9ee0b092725628f30839f100c4f (diff)
[PATCH] fix up the tests to work without all of the environ variables.
Diffstat (limited to 'test/topo_test')
-rw-r--r--test/topo_test23
1 files changed, 17 insertions, 6 deletions
diff --git a/test/topo_test b/test/topo_test
index 71121f478e..9225685c8c 100644
--- a/test/topo_test
+++ b/test/topo_test
@@ -1,13 +1,22 @@
#!/bin/bash
+RULES=replace_test.rules
+CONFIG=replace_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=topo_test.config
-export UDEV_RULES_FILE=topo_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="first_disk%n"
+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