diff options
Diffstat (limited to 'test/udev-test.pl')
-rwxr-xr-x | test/udev-test.pl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl index 53499d8871..fe1c6da4f9 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -1570,6 +1570,34 @@ EOF KERNEL=="sda", NAME="\$attr{[net/eth0]address}" EOF }, + { + desc => "TEST absolute path", + subsys => "block", + devpath => "/block/sda", + exp_name => "there", + rules => <<EOF +TEST=="/etc/hosts", NAME="there" +NAME="notthere" +EOF + }, + { + desc => "TEST subsys/kernel lookup", + subsys => "block", + devpath => "/block/sda", + exp_name => "yes", + rules => <<EOF +KERNEL=="sda", TEST=="[net/eth0]", NAME="yes" +EOF + }, + { + desc => "TEST relative path", + subsys => "block", + devpath => "/block/sda", + exp_name => "relative", + rules => <<EOF +KERNEL=="sda", TEST=="size", NAME="relative" +EOF + }, ); # set env |