test: add test for 'thread safety' of libudev

This adds a test for 715a970548d03fed18dc66c411c8b42ff21029cf.
This commit is contained in:
Yu Watanabe 2018-10-12 11:56:45 +09:00
parent 5eddbba3a1
commit cb3e926a5d
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,36 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <pthread.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#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;
}

View File

@ -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()