From: Peter Hutterer Date: Mon, 10 Jun 2019 12:08:33 +0000 (+1000) Subject: test: remove invalid GOTO in udev rule X-Git-Tag: 1.13.901~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb66232298d4c4cefc4edca741dee762cb6d7193;p=platform%2Fupstream%2Flibinput.git test: remove invalid GOTO in udev rule This was always jumped over because for this device, the touchpad was never set anyway. Signed-off-by: Peter Hutterer --- diff --git a/test/litest-device-mouse-low-dpi.c b/test/litest-device-mouse-low-dpi.c index 3339b3a..e40ec0c 100644 --- a/test/litest-device-mouse-low-dpi.c +++ b/test/litest-device-mouse-low-dpi.c @@ -45,7 +45,6 @@ static int events[] = { static const char udev_rule[] = "ACTION==\"remove\", GOTO=\"touchpad_end\"\n" "KERNEL!=\"event*\", GOTO=\"touchpad_end\"\n" -"ENV{ID_INPUT_TOUCHPAD}==\"\", GOTO=\"touchpad_end\"\n" "\n" "ATTRS{name}==\"litest Low DPI Mouse*\",\\\n" " ENV{MOUSE_DPI}=\"400@125\"\n"