X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=test%2Ftopo_test;h=77333a978c052d5725c319adf7d961ea538cac90;hp=2a19c8b5f82c77faa11923ea2331db0454cca9a5;hb=6818c51d7abeab9914eb7193968b1efa9459a853;hpb=1ac5204774c4080d16f308ac3077db0dae8d221c diff --git a/test/topo_test b/test/topo_test index 2a19c8b5f..77333a978 100644 --- a/test/topo_test +++ b/test/topo_test @@ -1,12 +1,24 @@ #!/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_PERMISSION_FILE=udev.permissions +export UDEV_CONFIG_FILE=$PWD/$CONFIG + +cat > $RULES << EOF +BUS="scsi", place="0:0:0:0", NAME="first_disk%n" +EOF + +cat > $CONFIG << EOF +udev_root="$PWD/udev/" +udev_db="$PWD/udev/.udevdb" +udev_rules="$PWD/$RULES" +udev_permissions="$PWD/udev.permissions" +EOF + +mkdir udev export ACTION=add export DEVPATH=block/sda @@ -30,3 +42,6 @@ export DEVPATH=block/sda/sda3 ../udev block ls udev +rm $RULES +rm $CONFIG +rm -rf udev