diff options
Diffstat (limited to 'shell/hush_test/hush-getopts/getopt_simple.tests')
-rwxr-xr-x | shell/hush_test/hush-getopts/getopt_simple.tests | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/hush_test/hush-getopts/getopt_simple.tests b/shell/hush_test/hush-getopts/getopt_simple.tests index 8615ae366..50718cc98 100755 --- a/shell/hush_test/hush-getopts/getopt_simple.tests +++ b/shell/hush_test/hush-getopts/getopt_simple.tests @@ -10,6 +10,8 @@ # We check that loop does not stop on unknown option (sets "?"), # stops on _first_ non-option argument. +( + echo "*** no OPTIND, optstring:'ab' args:-a -b c" var=QWERTY while getopts "ab" var -a -b c; do @@ -73,3 +75,7 @@ while getopts "ab" var -a -c -b d; do echo "var:'$var' OPTIND:$OPTIND" done echo "exited: rc:$? var:'$var' OPTIND:$OPTIND" + +) 2>&1 \ +| sed -e 's/ unrecognized option: / invalid option -- /' \ + -e 's/ illegal option -- / invalid option -- /' \ |