diff options
author | Denys Vlasenko | 2017-08-13 02:59:00 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-08-13 02:59:00 +0200 |
commit | 007ce9f807c99e14799c6579c8d06f422eccfcb2 (patch) | |
tree | e45e06ff46a7737a0553245d4fb397997705aff7 /shell/hush_test/hush-getopts/getopt_positional.tests | |
parent | 419db0391e47444dd12fb052613fd415694d04f0 (diff) | |
download | busybox-007ce9f807c99e14799c6579c8d06f422eccfcb2.zip busybox-007ce9f807c99e14799c6579c8d06f422eccfcb2.tar.gz |
shell: tweak getopts tests, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-getopts/getopt_positional.tests')
-rwxr-xr-x | shell/hush_test/hush-getopts/getopt_positional.tests | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/hush_test/hush-getopts/getopt_positional.tests b/shell/hush_test/hush-getopts/getopt_positional.tests index ddf0633..20716bb 100755 --- a/shell/hush_test/hush-getopts/getopt_positional.tests +++ b/shell/hush_test/hush-getopts/getopt_positional.tests @@ -1,3 +1,5 @@ +( + set -- -q -w -e r -t -y echo "*** no OPTIND, optstring:'we' args:$*" var=QWERTY @@ -5,3 +7,7 @@ while getopts "we" var; do echo "var:'$var' OPTIND:$OPTIND" done echo "exited: var:'$var' OPTIND:$OPTIND" + +) 2>&1 \ +| sed -e 's/ unrecognized option: / invalid option -- /' \ + -e 's/ illegal option -- / invalid option -- /' \ |