summaryrefslogtreecommitdiff
path: root/src/test/test-loopback.c
blob: 89b760fae436d2ed53b5951b34cf96f4d7c87618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: LGPL-2.1+ */

#include <stdio.h>
#include <string.h>

#include "log.h"
#include "loopback-setup.h"
#include "tests.h"

int main(int argc, char* argv[]) {
        int r;

        test_setup_logging(LOG_DEBUG);

        r = loopback_setup();
        if (r < 0)
                log_error_errno(r, "loopback: %m");

        return r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}