Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Feb 2012 21:48:44 +0000 (UTC)
From:      Jilles Tjoelker <jilles@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r231783 - stable/9/tools/regression/bin/sh/builtins
Message-ID:  <201202152148.q1FLmi8P083282@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jilles
Date: Wed Feb 15 21:48:44 2012
New Revision: 231783
URL: http://svn.freebsd.org/changeset/base/231783

Log:
  MFC r229742: sh: Avoid possible echo options in a testcase.

Modified:
  stable/9/tools/regression/bin/sh/builtins/getopts1.0
Directory Properties:
  stable/9/tools/regression/bin/sh/   (props changed)

Modified: stable/9/tools/regression/bin/sh/builtins/getopts1.0
==============================================================================
--- stable/9/tools/regression/bin/sh/builtins/getopts1.0	Wed Feb 15 21:48:29 2012	(r231782)
+++ stable/9/tools/regression/bin/sh/builtins/getopts1.0	Wed Feb 15 21:48:44 2012	(r231783)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-echo '-1-'
+printf -- '-1-\n'
 set -- -abc
 getopts "ab:" OPTION
 echo ${OPTION}
@@ -11,7 +11,7 @@ echo ${OPTION}
 # ksh93 20090505; pdksh 5.2.14p2; mksh R39c; bash 4.1 PL7; and zsh 4.3.10.
 # all recognize that "b" is missing its argument on the *first* iteration
 # of 'getopts' and do not produce the "a" in $OPTION.
-echo '-2-'
+printf -- '-2-\n'
 set -- -ab
 getopts "ab:" OPTION
 echo ${OPTION}
@@ -19,7 +19,7 @@ getopts "ab:" OPTION
 echo ${OPTION}
 
 # The 'shift' is aimed at causing an error.
-echo '-3-'
+printf -- '-3-\n'
 shift 1
 getopts "ab:" OPTION
 echo ${OPTION}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202152148.q1FLmi8P083282>