X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=test%2Ftopo_test;h=385f415893298267bf4a6212f8195e01550fcfcb;hb=a05b77509e6e3723f3e969eefd1c2a34bad79675;hp=5a557e909d083a04edeb1817baee3eb82d76b9a0;hpb=a38c862f88b4794ba6bb2b6ef256100dd26b86bb;p=elogind.git diff --git a/test/topo_test b/test/topo_test index 5a557e909..385f41589 100644 --- a/test/topo_test +++ b/test/topo_test @@ -1,20 +1,47 @@ #!/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 +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 + +mkdir udev export ACTION=add export DEVPATH=block/sda ../udev block +ls udev export DEVPATH=block/sda/sda3 ../udev block +ls udev + +export ACTION=remove +export DEVPATH=block/sda +../udev block +ls udev + +export DEVPATH=block/sda/sda3 + +../udev block +ls udev +rm $RULES +rm $CONFIG +rm -rf udev