summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/errors/redirection-error5.0
blob: b96c14e3a46146395294286b986dc300f8271837 (plain) (blame)
1
2
3
4
5
# $FreeBSD: head/bin/sh/tests/errors/redirection-error5.0 205153 2010-03-14 13:51:12Z jilles $
# A redirection error on a subshell should not abort the shell.
exec 2>/dev/null
( echo bad ) </var/empty/x
exit 0