summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-02-17 01:29:03 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:32:28 -0700
commit88f09368b3dc2d17cf2ce1a4841e42a120a4dbb9 (patch)
tree788fc630fa0a494b10d9906277fe6fd949706b38 /test
parent16378373cb9d96e5d424921806ff71f218e92694 (diff)
[PATCH] udev - switch callout part selector to {attribute}
Here we change the magic callout part number selector to the new atribute syntax. The syntax to select the second part of the callout string: '%2c' is now '%c{2}' I think it's more clear and we no longer misuse the length argument. The old syntax is still supported, but we should remove it some time in the future.
Diffstat (limited to 'test')
-rw-r--r--test/udev-test.pl12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl
index e238c909fa..6e031c4c2c 100644
--- a/test/udev-test.pl
+++ b/test/udev-test.pl
@@ -194,16 +194,6 @@ BUS="scsi", PLACE="0:0:0:0", NAME="Major:%M:minor:%m:kernelnumber:%n:bus:%b"
EOF
},
{
- desc => "select sysfs attribute by SYSFS{vendor}",
- subsys => "block",
- devpath => "block/sda",
- expected => "disk-IBM-ESXS-sda" ,
- conf => <<EOF
-BUS="scsi", SYSFS{vendor}="IBM-ESXS", NAME="disk-%s{vendor}-%k"
-KERNEL="ttyUSB0", NAME="visor"
-EOF
- },
- {
desc => "sustitution of sysfs value (%s{file})",
subsys => "block",
devpath => "block/sda",
@@ -250,7 +240,7 @@ EOF
devpath => "block/sda/sda3",
expected => "link1" ,
conf => <<EOF
-BUS="scsi", PROGRAM="/bin/echo -n node link1 link2", RESULT="node *", NAME="%1c", SYMLINK="%2c %3c"
+BUS="scsi", PROGRAM="/bin/echo -n node link1 link2", RESULT="node *", NAME="%c{1}", SYMLINK="%c{2} %c{3}"
EOF
},
{