svn commit: r196607 - head/tools/regression/bin/sh/builtins

Jilles Tjoelker jilles at FreeBSD.org
Fri Aug 28 05:24:22 UTC 2009


Author: jilles
Date: Thu Aug 27 22:23:23 2009
New Revision: 196607
URL: http://svn.freebsd.org/changeset/base/196607

Log:
  Add some tests for a fixed bug in an uncommitted patch.
  (Trying to get syntax errors for sh -c ':; do' and `:; do`.)

Added:
  head/tools/regression/bin/sh/builtins/eval3.0   (contents, props changed)

Added: head/tools/regression/bin/sh/builtins/eval3.0
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/tools/regression/bin/sh/builtins/eval3.0	Thu Aug 27 22:23:23 2009	(r196607)
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+eval 'false;' && exit 1
+eval 'true;' || exit 1
+eval 'false;
+' && exit 1
+eval 'true;
+' || exit 1
+exit 0


More information about the svn-src-head mailing list