[PATCH] add tests for LABEL rule with a device that has no bus.

This commit is contained in:
greg@kroah.com 2003-12-25 00:33:56 -08:00 committed by Greg KH
parent 2ae1a0c6f3
commit 64682333bb
1 changed files with 21 additions and 0 deletions

View File

@ -231,6 +231,27 @@ EOF
expected => "foo" ,
conf => <<EOF
CALLOUT, PROGRAM="/bin/echo -n foo", ID="foo", NAME="foo"
REPLACE, KERNEL="console", NAME="TTY"
EOF
},
{
desc => "invalid label for device with no bus",
subsys => "tty",
devpath => "class/tty/console",
expected => "TTY" ,
conf => <<EOF
LABEL, BUS="foo", SYSFS_dev="5:1", NAME="foo"
REPLACE, KERNEL="console", NAME="TTY"
EOF
},
{
desc => "valid label for device with no bus",
subsys => "tty",
devpath => "class/tty/console",
expected => "foo" ,
conf => <<EOF
LABEL, SYSFS_dev="5:1", NAME="foo"
REPLACE, KERNEL="console", NAME="TTY"
EOF
},
{