]>
Commit | Line | Data |
---|---|---|
deb63bfb | 1 | # $FreeBSD: head/bin/sh/tests/builtins/cd3.0 222154 2011-05-20 22:55:18Z jilles $ |
71aad674 A |
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" ] |