* tests/pwd/argument.sh: New file. * tests/local.mk (all_tests): Add the new test. --- tests/local.mk | 1 + tests/pwd/argument.sh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100755 tests/pwd/argument.sh
diff --git a/tests/local.mk b/tests/local.mk index 273579b2d..590978297 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -289,6 +289,7 @@ all_tests = \ tests/misc/arch.sh \ tests/pr/bounded-memory.sh \ tests/pr/pr-tests.pl \ + tests/pwd/argument.sh \ tests/pwd/pwd-option.sh \ tests/chcon/chcon-fail.sh \ tests/misc/coreutils.sh \ diff --git a/tests/pwd/argument.sh b/tests/pwd/argument.sh new file mode 100755 index 000000000..8f4e2e779 --- /dev/null +++ b/tests/pwd/argument.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# Test that 'pwd' with an argument. + +# 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_ pwd +getlimits_ + +base=$(env pwd) +mkdir -p a/b/c || framework_failure_ +cd a/b/c || framework_failure_ + +echo 'pwd: ignoring non-option arguments' > exp-err +echo "$base/a/b/c" > exp-out +env pwd a > out 2> err || fail=1 +compare exp-out out || fail=1 +compare exp-err err || fail=1 + +Exit $fail -- 2.53.0
