summaryrefslogtreecommitdiff
path: root/test/test-udev.c
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2015-03-15 17:10:17 +0100
committerAnthony G. Basile <blueness@gentoo.org>2015-03-18 21:34:18 -0400
commit0199ac5afb7dd621a9cbdebbeabc96c70638438e (patch)
tree7bc9dce08e66728da4965f8a5b28d8bd6b44a82b /test/test-udev.c
parent9b2f02162bf4ffecb1386d2fc75ca5648bb134ce (diff)
libudev: private - introduce udev_device_new_from_synthetic_event()
This allows set_action(), read_uevent_file() and read_db() to be made internal to libudev. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'test/test-udev.c')
-rw-r--r--test/test-udev.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test-udev.c b/test/test-udev.c
index b59a7969ad..817f08fda8 100644
--- a/test/test-udev.c
+++ b/test/test-udev.c
@@ -125,13 +125,12 @@ int main(int argc, char *argv[]) {
rules = udev_rules_new(udev, 1);
strscpyl(syspath, sizeof(syspath), "/sys", devpath, NULL);
- dev = udev_device_new_from_syspath(udev, syspath);
+ dev = udev_device_new_from_synthetic_event(udev, syspath, action);
if (dev == NULL) {
log_debug("unknown device '%s'", devpath);
goto out;
}
- udev_device_set_action(dev, action);
event = udev_event_new(dev);
sigfillset(&mask);