chiark / gitweb /
[PATCH] show permissions and groups in the label_test
[elogind.git] / test / topo_test
index 71121f478e02e6c5405e4f70380def2d29380484..9225685c8c3e391ae9f9baa4f01e61f2a621269e 100644 (file)
@@ -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