aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/errors/assignment-error2.0
blob: 68f2d4869957939f30f3b02204b904da6a6ac680 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: head/bin/sh/tests/errors/assignment-error2.0 216870 2011-01-01 13:26:18Z jilles $

set -e
HOME=/
readonly HOME
cd /sbin
{ HOME=/bin cd; } 2>/dev/null || :
[ "$(pwd)" != /bin ]