svn commit: r261121 - head/bin/sh/tests/parser

Jilles Tjoelker jilles at FreeBSD.org
Fri Jan 24 15:03:57 UTC 2014


Author: jilles
Date: Fri Jan 24 15:03:56 2014
New Revision: 261121
URL: http://svnweb.freebsd.org/changeset/base/261121

Log:
  sh: Add test for nested alias.

Added:
  head/bin/sh/tests/parser/alias11.0   (contents, props changed)
Modified:
  head/bin/sh/tests/parser/Makefile

Modified: head/bin/sh/tests/parser/Makefile
==============================================================================
--- head/bin/sh/tests/parser/Makefile	Fri Jan 24 13:51:38 2014	(r261120)
+++ head/bin/sh/tests/parser/Makefile	Fri Jan 24 15:03:56 2014	(r261121)
@@ -15,6 +15,7 @@ FILES+=		alias7.0
 FILES+=		alias8.0
 FILES+=		alias9.0
 FILES+=		alias10.0
+FILES+=		alias11.0
 FILES+=		and-pipe-not.0
 FILES+=		case1.0
 FILES+=		case2.0

Added: head/bin/sh/tests/parser/alias11.0
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/bin/sh/tests/parser/alias11.0	Fri Jan 24 15:03:56 2014	(r261121)
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+alias alias0=alias1
+alias alias1=exit
+alias0 0
+exit 3


More information about the svn-src-all mailing list