]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-loopback.c
libudev: hide definition of struct udev_list from other libudev components
[thirdparty/systemd.git] / src / test / test-loopback.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <stdio.h>
4 #include <string.h>
5
6 #include "log.h"
7 #include "loopback-setup.h"
8 #include "tests.h"
9
10 int main(int argc, char* argv[]) {
11 int r;
12
13 test_setup_logging(LOG_DEBUG);
14
15 r = loopback_setup();
16 if (r < 0)
17 log_error_errno(r, "loopback: %m");
18
19 return r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE;
20 }