diff options
author | greg@kroah.com <greg@kroah.com> | 2004-01-10 00:58:35 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:14 -0700 |
commit | bc20530f5017cf56fb55a4d9c04612bfb2664dd1 (patch) | |
tree | c7aeea90a812eb9eff38d653ca08db41aed9df8d /test/ignore_test | |
parent | f1db055ab2e349ce22254562faaece66d6a4a873 (diff) |
[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.
Diffstat (limited to 'test/ignore_test')
-rw-r--r-- | test/ignore_test | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/ignore_test b/test/ignore_test new file mode 100644 index 0000000000..888fd16ff3 --- /dev/null +++ b/test/ignore_test @@ -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 |