'factor' is now much faster at identifying large prime numbers,
and significantly faster on composite numbers greater than 2^128.
+ readlink will behave as if the -v option is used if the
+ POSIXLY_CORRECT environment variable is defined.
+
** Bug fixes
cksum was not compilable by Apple LLVM 10.0.0 x86-64, which
no_newline = false;
}
+ /* POSIX requires a diagnostic message written to standard error and a
+ non-zero exit status when given a file that is not a symbolic link. */
+ if (getenv ("POSIXLY_CORRECT") != nullptr)
+ verbose = true;
+
for (; optind < argc; ++optind)
{
char const *fname = argv[optind];
char *value = (can_mode != -1
? canonicalize_filename_mode (fname, can_mode)
: areadlink_with_size (fname, 63));
+
if (value)
{
fputs (value, stdout);
--- /dev/null
+#!/bin/sh
+# Test readlink with POSIXLY_CORRECT defined.
+
+# Copyright (C) 2025 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 <https://www.gnu.org/licenses/>.
+
+. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
+print_ver_ readlink
+
+touch file || framework_failure_
+ln -s file link1 || framework_failure_
+
+# POSIX requires a diagnostic error and non-zero exit status if the file is not
+# a symbolic link.
+cat <<\EOF > exp || framework_failure_
+readlink: file: Invalid argument
+EOF
+returns_ 1 env POSIXLY_CORRECT=1 readlink file 2>err || fail=1
+compare exp err || fail=1
+
+# Does not occur for non-POSIX options.
+env POSIXLY_CORRECT=1 readlink -f file || fail=1
+env POSIXLY_CORRECT=1 readlink -e file || fail=1
+env POSIXLY_CORRECT=1 readlink -m file || fail=1
+
+# Check on a symbolic link.
+cat <<\EOF > exp || framework_failure_
+file
+EOF
+POSIXLY_CORRECT=1 readlink link1 >out || fail=1
+compare exp out || fail=1
+POSIXLY_CORRECT=1 readlink -f link1 || fail=1
+POSIXLY_CORRECT=1 readlink -e link1 || fail=1
+POSIXLY_CORRECT=1 readlink -m link1 || fail=1
+
+Exit $fail