aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2005-02-26 02:52:04 +0100
committerGreg KH <gregkh@suse.de>2005-04-26 23:39:48 -0700
commit77313cd0d13ed3682f25c745f71f648292b28215 (patch)
treeb8ed0937895499b6fc28daa4b67e46d6e1dfac97 /test
parent9c020c60165997be842948d11f51ce6dd6b9b745 (diff)
downloadudev-77313cd0d13ed3682f25c745f71f648292b28215.tar.gz
[PATCH] namedev: skip backslashes only if followed by newline
Fix from: Hannes Reinecke <hare@suse.de> namedev_parse is a bit overzealous when in comes to handling backspaces; it always eats up backspaces regardless of anything beyond that. This means it is impossible to enter '\t' in a rule. Quite a bit of fun when you're trying to write regexps.
Diffstat (limited to 'test')
-rw-r--r--test/udev-test.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl
index fe7b9326..f442b162 100644
--- a/test/udev-test.pl
+++ b/test/udev-test.pl
@@ -195,6 +195,15 @@ NAME="visor"
EOF
},
{
+ desc => "preserve backslashes, if they are not for a newline",
+ subsys => "tty",
+ devpath => "/class/tty/ttyUSB0",
+ exp_name => "aaa",
+ conf => <<EOF
+KERNEL="ttyUSB0", PROGRAM="/bin/echo -e \\101", RESULT="A", NAME="aaa"
+EOF
+ },
+ {
desc => "Handle stupid backslashed multi lines in config file (and replace kernel name)",
subsys => "tty",
devpath => "/class/tty/ttyUSB0",