diff options
Diffstat (limited to 'bin/cash/tests/execution/path1.0')
-rw-r--r-- | bin/cash/tests/execution/path1.0 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/cash/tests/execution/path1.0 b/bin/cash/tests/execution/path1.0 new file mode 100644 index 00000000..49540e0d --- /dev/null +++ b/bin/cash/tests/execution/path1.0 @@ -0,0 +1,15 @@ +# $FreeBSD: releng/12.0/bin/sh/tests/execution/path1.0 217206 2011-01-09 21:07:30Z jilles $ +# Some builtins should not be overridable via PATH. + +set -e +T=$(mktemp -d ${TMPDIR:-/tmp}/sh-test.XXXXXX) +trap 'rm -rf ${T}' 0 +echo '#!/bin/sh +echo bad' >"$T/cd" +chmod 755 "$T/cd" +cd /bin +oPATH=$PATH +PATH=$T:$PATH:%builtin +cd / +PATH=$oPATH +[ "$(pwd)" = / ] |