diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | test/sys/block/sda/test:colon+plus | 1 | ||||
-rwxr-xr-x | test/udev-test.pl | 11 |
3 files changed, 13 insertions, 1 deletions
@@ -3,10 +3,12 @@ These things would be nice to have: to syslog, so any error logged from the kernel can be associated with any of the links at that time + These things will change in future udev versions: o warn if BUS, ID, SYSFS are used as keys (they are SUBSYSTEMS, KERNELS, ATTRS now) + These things are deprecated and scheduled for removal in a future udev version: o remove old udevdb dump 'udevinfo -d' diff --git a/test/sys/block/sda/test:colon+plus b/test/sys/block/sda/test:colon+plus new file mode 100644 index 0000000000..0fed9a5d60 --- /dev/null +++ b/test/sys/block/sda/test:colon+plus @@ -0,0 +1 @@ +colon diff --git a/test/udev-test.pl b/test/udev-test.pl index 73d99297d2..36cbe8ac75 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -1556,11 +1556,20 @@ EOF devpath => "/block/sda/sda1", exp_name => "yes", rules => <<EOF -KERNEL="sda1", NAME=="no" +KERNEL="sda1", NAME="no" KERNEL=="sda1", NAME="yes" EOF }, { + desc => "operator chars in attribute", + subsys => "block", + devpath => "/block/sda", + exp_name => "yes", + rules => <<EOF +KERNEL=="sda", ATTR{test:colon+plus}=="?*", NAME="yes" +EOF + }, + { desc => "overlong comment line", subsys => "block", devpath => "/block/sda/sda1", |