[PATCH] add tests to catch whitespace and comment config file parsing errors.

This commit is contained in:
greg@kroah.com 2003-12-17 18:28:05 -08:00 committed by Greg KH
parent 093bf8f4d2
commit 281ff00a61
1 changed files with 33 additions and 0 deletions

View File

@ -101,6 +101,39 @@ EOF
expected => "visor" ,
conf => <<EOF
REPLACE, KERNEL="ttyUSB0", NAME="visor"
EOF
},
{
desc => "Handle comment lines in config file (and replace kernel name)",
subsys => "tty",
devpath => "class/tty/ttyUSB0",
expected => "visor" ,
conf => <<EOF
# this is a comment
REPLACE, KERNEL="ttyUSB0", NAME="visor"
EOF
},
{
desc => "Handle comment lines in config file with whitespace (and replace kernel name)",
subsys => "tty",
devpath => "class/tty/ttyUSB0",
expected => "visor" ,
conf => <<EOF
# this is a comment with whitespace before the comment
REPLACE, KERNEL="ttyUSB0", NAME="visor"
EOF
},
{
desc => "Handle empty lines in config file (and replace kernel name)",
subsys => "tty",
devpath => "class/tty/ttyUSB0",
expected => "visor" ,
conf => <<EOF
REPLACE, KERNEL="ttyUSB0", NAME="visor"
EOF
},
{