diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-02-09 04:37:32 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:27:32 -0700 |
commit | c1ab046124ebef3c82950b91ccfd1678d9f7fe5b (patch) | |
tree | 1b160f9cba6681028f8993ca723300611172b133 /test | |
parent | bce52be81ec679bf080bb11f292c899d9fde084e (diff) |
[PATCH] provide temporary device node for callouts to access the device
%N will create a temporary node for a callout a be sustituted with the
name of the node.
Diffstat (limited to 'test')
-rw-r--r-- | test/udev-test.pl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl index 67c0672759..fa1e4affc6 100644 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -1068,6 +1068,24 @@ BUS="scsi", KERNEL="sda", NAME="should_not_match", DRIVER="sd-wrong" BUS="scsi", KERNEL="sda", NAME="node", DRIVER="sd" EOF }, + { + desc => "temporary node creation test", + subsys => "block", + devpath => "/block/sda", + exp_name => "sda", + conf => <<EOF +BUS="scsi", KERNEL="sda", PROGRAM="/usr/bin/test -b %N" NAME="%N" +EOF + }, + { + desc => "devpath substitution test", + subsys => "block", + devpath => "/block/sda", + exp_name => "sda", + conf => <<EOF +BUS="scsi", KERNEL="sda", PROGRAM="/bin/echo %p", RESULT="/block/sda" NAME="%k" +EOF + }, ); # set env |