* tests/install/stdin.sh: Avoid failure on macOS for now. In future we may support this feature on macOS as discussed at: https://lists.gnu.org/r/coreutils/2026-06/msg00004.html --- tests/install/stdin.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/install/stdin.sh b/tests/install/stdin.sh index 2e050059e..822d64e24 100755 --- a/tests/install/stdin.sh +++ b/tests/install/stdin.sh @@ -28,7 +28,8 @@ test -r "$tty" 2>&1 \ # work around FreeBSD / macOS issue as discussed at: # https://lists.gnu.org/r/coreutils/2026-06/msg00004.html -test $(stat -L -c%i /dev/stdin) = $(stat -L -c%i - </dev/stdin) || +# TODO: Look at possibly supporting FreeBSD / macOS here. +test $(: | stat -L -c%i /dev/stdin - | uniq | wc -l) = 1 || skip_ '/dev/stdin inode correlation mismatch' echo a >a || framework_failure_ -- 2.55.0
