X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=test%2Ftopo_test;h=18b2549b9727ac4c3a98a4bd7b2089f25fd8819b;hp=2a19c8b5f82c77faa11923ea2331db0454cca9a5;hb=51a8bb2f361d86013e7579570faba446eed9c66d;hpb=1ac5204774c4080d16f308ac3077db0dae8d221c diff --git a/test/topo_test b/test/topo_test index 2a19c8b5f..18b2549b9 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/.udev.tdb" +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