From: greg@kroah.com Date: Sat, 10 Jan 2004 08:58:35 +0000 (-0800) Subject: [PATCH] add a script that tests the IGNORE rule X-Git-Tag: 013~32 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc20530f5017cf56fb55a4d9c04612bfb2664dd1;p=systemd [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. --- diff --git a/test/ignore_test b/test/ignore_test new file mode 100644 index 00000000..888fd16f --- /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