1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00

test: add test for 'thread safety' of sd-device

This adds a test for a5d8835c78.
This commit is contained in:
Yu Watanabe 2018-10-12 11:45:20 +09:00
parent 657ccaac1b
commit a6ee01caf3
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,39 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <pthread.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "sd-device.h"
#include "device-util.h"
#include "macro.h"
static void* thread(void *p) {
sd_device **d = p;
assert_se(!(*d = sd_device_unref(*d)));
return NULL;
}
int main(int argc, char *argv[]) {
sd_device *loopback;
pthread_t t;
const char *key, *value;
assert_se(unsetenv("SYSTEMD_MEMPOOL") == 0);
assert_se(sd_device_new_from_syspath(&loopback, "/sys/class/net/lo") >= 0);
FOREACH_DEVICE_PROPERTY(loopback, key, value)
printf("%s=%s\n", key, value);
assert_se(pthread_create(&t, NULL, thread, &loopback) == 0);
assert_se(pthread_join(t, NULL) == 0);
assert_se(!loopback);
return 0;
}

View File

@ -904,6 +904,12 @@ tests += [
[['src/libsystemd/sd-device/test-sd-device.c'],
[],
[]],
[['src/libsystemd/sd-device/test-sd-device-thread.c'],
[libbasic,
libshared_static,
libsystemd],
[threads]],
]
if cxx.found()