Add some tests for a fixed bug in an uncommitted patch.

(Trying to get syntax errors for sh -c ':; do' and `:; do`.)
This commit is contained in:
Jilles Tjoelker 2009-08-27 22:23:23 +00:00
parent 4b9222b7ea
commit 840f51bb6d

View File

@ -0,0 +1,9 @@
# $FreeBSD$
eval 'false;' && exit 1
eval 'true;' || exit 1
eval 'false;
' && exit 1
eval 'true;
' || exit 1
exit 0