mirror of
https://github.com/systemd/systemd.git
synced 2025-02-04 21:47:31 +03:00
[PATCH] add a script that tests the IGNORE rule
Can't figure out how to test for "nothing" in the udev-test.pl script framework.
This commit is contained in:
parent
f1db055ab2
commit
bc20530f50
35
test/ignore_test
Normal file
35
test/ignore_test
Normal file
@ -0,0 +1,35 @@
|
||||
#!/bin/bash
|
||||
|
||||
RULES=ignore_test.rules
|
||||
CONFIG=ignore_test.conf
|
||||
|
||||
export UDEV_TEST=yes
|
||||
export SYSFS_PATH=$PWD/sys/
|
||||
export UDEV_CONFIG_FILE=$PWD/$CONFIG
|
||||
|
||||
cat > $RULES << EOF
|
||||
IGNORE, KERNEL="ttyUSB0"
|
||||
EOF
|
||||
|
||||
cat > $CONFIG << EOF
|
||||
udev_root="$PWD/udev/"
|
||||
udev_db="$PWD/udev/.udev.tdb"
|
||||
udev_rules="$PWD/$RULES"
|
||||
udev_permissions="$PWD/udev.permissions"
|
||||
EOF
|
||||
|
||||
mkdir udev
|
||||
|
||||
export DEVPATH=class/tty/ttyUSB0
|
||||
export ACTION=add
|
||||
|
||||
../udev tty
|
||||
ls -l udev
|
||||
|
||||
export ACTION=remove
|
||||
../udev tty
|
||||
ls -l udev
|
||||
|
||||
rm $RULES
|
||||
rm $CONFIG
|
||||
rm -rf udev
|
Loading…
x
Reference in New Issue
Block a user