]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/sh/tests/builtins/cd3.0
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / bin / sh / tests / builtins / cd3.0
1 # $FreeBSD$
2
3 # If fully successful, cd -Pe must be like cd -P.
4
5 set -e
6
7 cd "${TMPDIR:-/tmp}"
8 cd -Pe /
9 [ "$PWD" = / ]
10 [ "$(pwd)" = / ]
11 cd "${TMPDIR:-/tmp}"
12 cd -eP /
13 [ "$PWD" = / ]
14 [ "$(pwd)" = / ]
15
16 set +e
17
18 # If cd -Pe cannot chdir, the exit status must be greater than 1.
19
20 v=$( (cd -Pe /var/empty/nonexistent) 2>&1 >/dev/null)
21 [ $? -gt 1 ] && [ -n "$v" ]