diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-02-05 12:40:15 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-02-05 12:40:15 +0100 |
commit | a402404fb23195839a9e008dbbe5edb5349c05b0 (patch) | |
tree | 8307501c8e60a476de46c60e5e1c1c4b9f076c4a /test/udev-test.pl | |
parent | 198882e9ae1dc65bbca3c00fa67a711c80f3a89c (diff) |
test: add test for empty and non-existent ATTR
Diffstat (limited to 'test/udev-test.pl')
-rwxr-xr-x | test/udev-test.pl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl index 1b81eb8d72..4f61ce3e5d 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -483,6 +483,33 @@ ATTRS{dev}=="5:1", NAME="foo" EOF }, { + desc => "ATTR (empty file)", + subsys => "tty", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "empty" , + rules => <<EOF +KERNEL=="sda", ATTR{test_empty_file}=="?*", NAME:="something" +KERNEL=="sda", ATTR{test_empty_file}!="", NAME:="not-empty" +KERNEL=="sda", ATTR{test_empty_file}=="", NAME:="empty" +KERNEL=="sda", ATTR{test_empty_file}!="?*", NAME:="not-something" +KERNEL=="sda", NAME="wrong" +EOF + }, + { + desc => "ATTR (non-existent file)", + subsys => "tty", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "non-existent" , + rules => <<EOF +KERNEL=="sda", ATTR{nofile}=="?*", NAME:="something" +KERNEL=="sda", ATTR{nofile}!="", NAME:="not-empty" +KERNEL=="sda", ATTR{nofile}=="", NAME:="empty" +KERNEL=="sda", ATTR{nofile}!="?*", NAME:="not-something" +KERNEL=="sda", TEST!="nofile", NAME:="non-existent" +KERNEL=="sda", NAME="wrong" +EOF + }, + { desc => "program and bus type match", subsys => "block", devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", |