diff options
Diffstat (limited to 'bin/cash/tests/builtins/cd3.0')
-rw-r--r-- | bin/cash/tests/builtins/cd3.0 | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/cash/tests/builtins/cd3.0 b/bin/cash/tests/builtins/cd3.0 deleted file mode 100644 index b41caee2..00000000 --- a/bin/cash/tests/builtins/cd3.0 +++ /dev/null @@ -1,21 +0,0 @@ -# $FreeBSD: releng/12.0/bin/sh/tests/builtins/cd3.0 222154 2011-05-20 22:55:18Z jilles $ - -# If fully successful, cd -Pe must be like cd -P. - -set -e - -cd "${TMPDIR:-/tmp}" -cd -Pe / -[ "$PWD" = / ] -[ "$(pwd)" = / ] -cd "${TMPDIR:-/tmp}" -cd -eP / -[ "$PWD" = / ] -[ "$(pwd)" = / ] - -set +e - -# If cd -Pe cannot chdir, the exit status must be greater than 1. - -v=$( (cd -Pe /var/empty/nonexistent) 2>&1 >/dev/null) -[ $? -gt 1 ] && [ -n "$v" ] |