xref: /dragonfly/tools/regression/bin/sh/builtins/cd5.0 (revision d4ef6694)
1# $FreeBSD: head/tools/regression/bin/sh/builtins/cd5.0 222379 2011-05-27 19:36:07Z jilles $
2
3set -e
4T=$(mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXX")
5trap 'rm -rf "$T"' 0
6
7cd -P "$T"
8D=$(pwd)
9
10mkdir a a/1 b b/1 b/2
11
12CDPATH=$D/a:
13# Basic test.
14cd 1 >/dev/null
15[ "$(pwd)" = "$D/a/1" ]
16# Test that the current directory is not checked before CDPATH.
17cd "$D/b"
18cd 1 >/dev/null
19[ "$(pwd)" = "$D/a/1" ]
20# Test not using a CDPATH entry.
21cd "$D/b"
22cd 2
23[ "$(pwd)" = "$D/b/2" ]
24