diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/udev-test.pl | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl index 85ec41b641..95013279b8 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -1259,6 +1259,72 @@ KERNEL=="ttyACM0a|nothing", SYMLINK+="wrong3" EOF }, { + desc => "test multi matches 5", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "found", + not_exp_name => "bad", + rules => <<EOF +KERNEL=="sda", TAG="foo" +TAGS=="|foo", SYMLINK+="found" +TAGS=="|aaa", SYMLINK+="bad" +EOF + }, + { + desc => "test multi matches 6", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "found", + not_exp_name => "bad", + rules => <<EOF +KERNEL=="sda", TAG="" +TAGS=="|foo", SYMLINK+="found" +TAGS=="aaa|bbb", SYMLINK+="bad" +EOF + }, + { + desc => "test multi matches 7", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "found", + not_exp_name => "bad", + rules => <<EOF +KERNEL=="sda", TAG="foo" +TAGS=="foo||bar", SYMLINK+="found" +TAGS=="aaa||bbb", SYMLINK+="bad" +EOF + }, + { + desc => "test multi matches 8", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "found", + not_exp_name => "bad", + rules => <<EOF +KERNEL=="sda", TAG="" +TAGS=="foo||bar", SYMLINK+="found" +TAGS=="aaa|bbb", SYMLINK+="bad" +EOF + }, + { + desc => "test multi matches 9", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "found", + not_exp_name => "bad", + rules => <<EOF +KERNEL=="sda", TAG="foo" +TAGS=="foo|", SYMLINK+="found" +TAGS=="aaa|", SYMLINK+="bad" +EOF + }, + { + desc => "test multi matches 10", + devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", + exp_name => "found", + not_exp_name => "bad", + rules => <<EOF +KERNEL=="sda", TAG="" +TAGS=="foo|", SYMLINK+="found" +TAGS=="aaa|bbb", SYMLINK+="bad" +EOF + }, + { desc => "IMPORT parent test sequence 1/2 (keep)", devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", exp_name => "parent", |