summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/eval7.0
blob: f694e735a100e55be5bf4738c57637000379eaec (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: head/bin/sh/tests/builtins/eval7.0 272983 2014-10-12 13:12:06Z jilles $
# Assumes that break can break out of a loop outside eval.

while :; do
	eval "break
echo bad1"
	echo bad2
	exit 3
done