xref: /freebsd/bin/sh/tests/parameters/pwd1.0 (revision 7fdf597e96a02165cfe22ff357b857d5fa15ed8a)
1# Check that bogus PWD values are not accepted from the environment.
2
3cd / || exit 3
4failures=0
5[ "$(PWD=foo ${SH} -c 'pwd')" = / ] || : $((failures += 1))
6[ "$(PWD=/var/empty ${SH} -c 'pwd')" = / ] || : $((failures += 1))
7[ "$(PWD=/var/empty/foo ${SH} -c 'pwd')" = / ] || : $((failures += 1))
8[ "$(PWD=/bin/ls ${SH} -c 'pwd')" = / ] || : $((failures += 1))
9
10exit $((failures != 0))
11