From: Frantisek Sumsal Date: Mon, 6 May 2019 08:48:12 +0000 (+0200) Subject: test: return a non-zero return code when 'nobody' user doesn't exist X-Git-Tag: v243-rc1~487 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ab668337e28ed8e594b0a9ce0b31f2afe3506d8;p=thirdparty%2Fsystemd.git test: return a non-zero return code when 'nobody' user doesn't exist Lookup of a non-existing user using getpwnam() is not considered an error, thus the `errno` is not set appropriately, causing unexpected fails on systems, where 'nobody' user doesn't exist by default --- diff --git a/src/test/test-capability.c b/src/test/test-capability.c index 6b2de66bb7f..f9fae84ddea 100644 --- a/src/test/test-capability.c +++ b/src/test/test-capability.c @@ -99,7 +99,7 @@ static int setup_tests(bool *run_ambient) { nobody = getpwnam(NOBODY_USER_NAME); if (!nobody) - return log_error_errno(errno, "Could not find nobody user: %m"); + return log_error_errno(SYNTHETIC_ERRNO(ENOENT), "Could not find nobody user: %m"); test_uid = nobody->pw_uid; test_gid = nobody->pw_gid;