diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-02-26 09:00:33 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-03-04 21:45:44 -0500 |
commit | f26b57d12a2ea08a9b2622dfb2a5cc76988318b1 (patch) | |
tree | 149e914dad09e1a9f1b4876c9c9b74ca5bf56d58 /src | |
parent | 04c760d2fe8615203993829f7724f7e6ba553340 (diff) |
Move test-loopback to normal tests
In the normal case lo should be already configured and this should be
a noop, even when run under root.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test-loopback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test-loopback.c b/src/test/test-loopback.c index 2748395ade..7b67337331 100644 --- a/src/test/test-loopback.c +++ b/src/test/test-loopback.c @@ -31,7 +31,7 @@ int main(int argc, char* argv[]) { r = loopback_setup(); if (r < 0) - fprintf(stderr, "loopback: %s\n", strerror(-r)); + log_error("loopback: %m"); - return 0; + return r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE; } |