blob: 89b760fae436d2ed53b5951b34cf96f4d7c87618 [file] [log] [blame] [raw]
/* 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;
}