Date: Fri, 24 Jan 2014 15:03:56 +0000 (UTC) From: Jilles Tjoelker <jilles@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261121 - head/bin/sh/tests/parser Message-ID: <201401241503.s0OF3uvI084270@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401241503.s0OF3uvI084270>