From: Luca Boccassi Date: Thu, 16 Nov 2023 23:01:08 +0000 (+0000) Subject: test: minix fsck not found on alpha X-Git-Tag: v255-rc3~46^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=210dcd8fc65164d4ebb3ede407916a0b00932021;p=thirdparty%2Fsystemd.git test: minix fsck not found on alpha It seems even this one is not everywhere, so relax the test: /* test_fsck_exists */ Assertion 'fsck_exists_for_fstype("minix") == 1' failed at src/test/test-path-util.c:624, function test_fsck_exists(). Aborting. https://buildd.debian.org/status/fetch.php?pkg=systemd&arch=alpha&ver=255%7Erc2-1&stamp=1700147880&raw=0 --- diff --git a/src/test/test-path-util.c b/src/test/test-path-util.c index 96a4fce6304..f5a425689a3 100644 --- a/src/test/test-path-util.c +++ b/src/test/test-path-util.c @@ -620,8 +620,8 @@ TEST(fsck_exists) { /* Ensure we use a sane default for PATH. */ assert_se(unsetenv("PATH") == 0); - /* fsck.minix is provided by util-linux and will probably exist. */ - assert_se(fsck_exists_for_fstype("minix") == 1); + /* We might or might not find one of these, so keep the test lax. */ + assert_se(fsck_exists_for_fstype("minix") >= 0); assert_se(fsck_exists_for_fstype("AbCdE") == 0); assert_se(fsck_exists_for_fstype("/../bin/") == 0);