From: Yu Watanabe Date: Fri, 12 Oct 2018 02:56:45 +0000 (+0900) Subject: test: add test for 'thread safety' of libudev X-Git-Tag: v240~570^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb3e926a5da4f73b48f71b541febe646bc1008d7;p=thirdparty%2Fsystemd.git test: add test for 'thread safety' of libudev This adds a test for 715a970548d03fed18dc66c411c8b42ff21029cf. --- diff --git a/src/libsystemd/sd-device/test-udev-device-thread.c b/src/libsystemd/sd-device/test-udev-device-thread.c new file mode 100644 index 00000000000..2fc0f591850 --- /dev/null +++ b/src/libsystemd/sd-device/test-udev-device-thread.c @@ -0,0 +1,36 @@ +/* SPDX-License-Identifier: LGPL-2.1+ */ + +#include +#include +#include +#include + +#include "libudev.h" + +#include "macro.h" + +static void* thread(void *p) { + struct udev_device **d = p; + + assert_se(!(*d = udev_device_unref(*d))); + + return NULL; +} + +int main(int argc, char *argv[]) { + struct udev_device *loopback; + pthread_t t; + + assert_se(unsetenv("SYSTEMD_MEMPOOL") == 0); + + assert_se(loopback = udev_device_new_from_syspath(NULL, "/sys/class/net/lo")); + + assert_se(udev_device_get_properties_list_entry(loopback)); + + assert_se(pthread_create(&t, NULL, thread, &loopback) == 0); + assert_se(pthread_join(t, NULL) == 0); + + assert_se(!loopback); + + return 0; +} diff --git a/src/test/meson.build b/src/test/meson.build index 9ce0bdec78b..34dedb4f968 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -910,6 +910,12 @@ tests += [ libshared_static, libsystemd], [threads]], + + [['src/libsystemd/sd-device/test-udev-device-thread.c'], + [libbasic, + libshared_static, + libudev], + [threads]], ] if cxx.found()