From: Collin Funk Date: Sat, 24 Jan 2026 22:12:10 +0000 (-0800) Subject: tests: chgrp: allow a numeric user id to be printed X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3894e072331b431c9c2c96bab431e3f5831e7d6;p=thirdparty%2Fcoreutils.git tests: chgrp: allow a numeric user id to be printed * tests/chgrp/from.sh: If 'id' cannot find a user name for user id 1, expect the user id to be printed in the message of 'chgrp'. Reported by Bruno Haible. --- diff --git a/tests/chgrp/from.sh b/tests/chgrp/from.sh index 49ba04fa67..4d36366766 100755 --- a/tests/chgrp/from.sh +++ b/tests/chgrp/from.sh @@ -30,7 +30,7 @@ set _ $(ls -n f); shift; test ":$4" = ':1' || fail=1 # Make sure the correct diagnostic is output # Note we output a name even though an id was specified. chgrp -v --from=42 43 f > out || fail=1 -printf "group of 'f' retained as $(id -nu 1)\n" > exp +printf "group of 'f' retained as $(id -nu 1 || printf 1)\n" > exp compare exp out || fail=1 chgrp --from=:1 010 f || fail=1