From: Pádraig Brady Date: Sat, 3 Jan 2026 14:45:07 +0000 (+0000) Subject: tests: chmod: ensure failure upon partial success X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71e0be29f140b7aa851346bb801c86036f10676d;p=thirdparty%2Fcoreutils.git tests: chmod: ensure failure upon partial success * tests/chmod/partial-fail.sh: Add new test. * tests/local.mk: Reference new test. Discussed at https://github.com/uutils/coreutils/issues/9790 --- diff --git a/tests/chmod/partial-fail.sh b/tests/chmod/partial-fail.sh new file mode 100755 index 0000000000..97892d2570 --- /dev/null +++ b/tests/chmod/partial-fail.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# Ensure exit with failure if only some operations succeed + +# Copyright (C) 2026 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src +print_ver_ chmod + +touch file || framework_failure_ +returns_ 1 chmod 0 missing_file file || fail=1 +test -r file && fail=1 + +Exit $fail diff --git a/tests/local.mk b/tests/local.mk index 5a3fd94a35..5547a3f9a7 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -510,6 +510,7 @@ all_tests = \ tests/chmod/ignore-symlink.sh \ tests/chmod/inaccessible.sh \ tests/chmod/octal.sh \ + tests/chmod/partial-fail.sh \ tests/chmod/setgid.sh \ tests/chmod/silent.sh \ tests/chmod/thru-dangling.sh \