* tests/nl/multiple-files.sh: New file. * tests/local.mk (all_tests): Add the new test. --- tests/local.mk | 1 + tests/nl/multiple-files.sh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100755 tests/nl/multiple-files.sh
diff --git a/tests/local.mk b/tests/local.mk index 480390c93..273579b2d 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -374,6 +374,7 @@ all_tests = \ tests/nice/nice-fail.sh \ tests/nl/nl.sh \ tests/nl/multibyte.sh \ + tests/nl/multiple-files.sh \ tests/misc/nohup.sh \ tests/nproc/nproc-avail.sh \ tests/nproc/nproc-positive.sh \ diff --git a/tests/nl/multiple-files.sh b/tests/nl/multiple-files.sh new file mode 100755 index 000000000..304102cab --- /dev/null +++ b/tests/nl/multiple-files.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# Test that 'nl' processes all arguments. + +# 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 <https://www.gnu.org/licenses/>. + +. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src +print_ver_ nl +getlimits_ + +echo a > file1 || framework_failure_ +echo b > file2 || framework_failure_ +returns_ 1 nl file1 missing file2 > out 2> err || fail=1 +printf ' 1\ta\n 2\tb\n' > exp-out || framework_failure_ +cat <<EOF > exp-err || framework_failure_ +nl: missing: $ENOENT +EOF +compare exp-out out || fail=1 +compare exp-err err || fail=1 + +Exit $fail -- 2.53.0
