From owner-svn-src-all@FreeBSD.ORG Sun Apr 11 20:21:34 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA6D0106564A; Sun, 11 Apr 2010 20:21:34 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D91C58FC18; Sun, 11 Apr 2010 20:21:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o3BKLYDF001406; Sun, 11 Apr 2010 20:21:34 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o3BKLYKO001404; Sun, 11 Apr 2010 20:21:34 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201004112021.o3BKLYKO001404@svn.freebsd.org> From: Jilles Tjoelker Date: Sun, 11 Apr 2010 20:21:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r206491 - head/tools/regression/bin/sh/parameters X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2010 20:21:35 -0000 Author: jilles Date: Sun Apr 11 20:21:34 2010 New Revision: 206491 URL: http://svn.freebsd.org/changeset/base/206491 Log: sh: Test that bogus values of PWD are not imported from the environment. Current versions pass this test trivially by never importing PWD, but I plan to change sh to import PWD if it is an absolute pathname for the current directory, possibly containing symlinks. Added: head/tools/regression/bin/sh/parameters/pwd1.0 (contents, props changed) Added: head/tools/regression/bin/sh/parameters/pwd1.0 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/tools/regression/bin/sh/parameters/pwd1.0 Sun Apr 11 20:21:34 2010 (r206491) @@ -0,0 +1,11 @@ +# $FreeBSD$ +# Check that bogus PWD values are not accepted from the environment. + +cd / || exit 3 +failures=0 +[ "$(PWD=foo sh -c 'pwd')" = / ] || : $((failures += 1)) +[ "$(PWD=/var/empty sh -c 'pwd')" = / ] || : $((failures += 1)) +[ "$(PWD=/var/empty/foo sh -c 'pwd')" = / ] || : $((failures += 1)) +[ "$(PWD=/bin/ls sh -c 'pwd')" = / ] || : $((failures += 1)) + +exit $((failures != 0))