shell: tweak getopts tests, no code changes
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 13 Aug 2017 00:59:00 +0000 (02:59 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 13 Aug 2017 00:59:00 +0000 (02:59 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash_test/ash-getopts/getopt_test_libc_bug.tests
shell/hush_test/hush-getopts/getopt_optarg.tests
shell/hush_test/hush-getopts/getopt_positional.tests
shell/hush_test/hush-getopts/getopt_silent.tests
shell/hush_test/hush-getopts/getopt_simple.tests
shell/hush_test/hush-getopts/getopt_test_libc_bug.tests

index 6c0781f20b13b27885bcf968797650d21b32c3d6..fcaac81a28c4fe2786c8049e421d13358ec1e6b8 100755 (executable)
@@ -1,6 +1,6 @@
 # This test can fail with libc with buggy getopt() implementation.
 # If getopt() wants to parse multi-option args (-abc),
-# it needs to remember a position withit current arg.
+# it needs to remember a position within current arg.
 #
 # If this position is kept as a POINTER, not an offset,
 # and if argv[] ADDRESSES (not contents!) change, it blows up.
@@ -24,7 +24,7 @@ VAR111=NEWVAL; getopts "ac" var -a -b -c -d e; echo "3 rc:$? var:'$var' OPTIND:$
 VAR222=NEWVAL; getopts "ac" var -a -b -c -d e; echo "4 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 VAR333=NEWVAL; getopts "ac" var -a -b -c -d e; echo "5 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 
-# Sligntly different attempts to force reallocations
+# Slightly different attempts to force reallocations
 
 echo
 echo "*** optstring:'ac' args:-a -b -c -d e"
index 33682e8682bd09c329f16d49bab97534aceef914..881cc78848dde3adec47083d41b198e6386b4d98 100755 (executable)
@@ -1,3 +1,5 @@
+(
+
 set -- -q -w e -r -t -y
 echo "*** no OPTIND, optstring:'w:et' args:$*"
 var=QWERTY
@@ -16,3 +18,7 @@ while getopts "w:et" var; do
        OPTARG=ASDFGH
 done
 echo "exited: var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
+
+) 2>&1 \
+| sed  -e 's/ unrecognized option: / invalid option -- /' \
+       -e 's/ illegal option -- / invalid option -- /' \
index ddf063363dfdc1d80eb02e2d4036be550a40bf56..20716bb0c990de92a3233d8b94e00e52648a5c4d 100755 (executable)
@@ -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 -- /' \
index 097d7ba85878b75eb4128a70f8fe57cfe085ada3..5f255db7f71128eb47ae00591d651bf1f2f4651f 100755 (executable)
@@ -11,6 +11,8 @@
 # and OPTARG shall be set to the option character found.
 # """
 
+(
+
 echo "*** optstring:':ac' args:-a -b -c"
 getopts ":ac" var -a -b -c; echo "1 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 getopts ":ac" var -a -b -c; echo "2 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
@@ -21,3 +23,7 @@ getopts ":ac" var -a -b -c; echo "4 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPT
 # Nevertheless, let's verify that calling it yet another time doesn't do
 # anything weird:
 getopts ":ac" var -a -b -c; echo "5 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
+
+) 2>&1 \
+| sed  -e 's/ unrecognized option: / invalid option -- /' \
+       -e 's/ illegal option -- / invalid option -- /' \
index 8615ae3665f0edff8d42445f0b87abcc1a281cfb..50718cc98ad8ddd30675dc577b858c88aee3b9b0 100755 (executable)
@@ -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 -- /' \
index 6c0781f20b13b27885bcf968797650d21b32c3d6..ab7bc3b09c984ef37fb372e498760f36fdbeabfa 100755 (executable)
@@ -1,10 +1,12 @@
 # This test can fail with libc with buggy getopt() implementation.
 # If getopt() wants to parse multi-option args (-abc),
-# it needs to remember a position withit current arg.
+# it needs to remember a position within current arg.
 #
 # If this position is kept as a POINTER, not an offset,
 # and if argv[] ADDRESSES (not contents!) change, it blows up.
 
+(
+
 echo "*** optstring:'ac' args:-a -b -c -d e"
 getopts "ac" var -a -b -c -d e; echo "1 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 getopts "ac" var -a -b -c -d e; echo "2 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
@@ -24,7 +26,7 @@ VAR111=NEWVAL; getopts "ac" var -a -b -c -d e; echo "3 rc:$? var:'$var' OPTIND:$
 VAR222=NEWVAL; getopts "ac" var -a -b -c -d e; echo "4 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 VAR333=NEWVAL; getopts "ac" var -a -b -c -d e; echo "5 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 
-# Sligntly different attempts to force reallocations
+# Slightly different attempts to force reallocations
 
 echo
 echo "*** optstring:'ac' args:-a -b -c -d e"
@@ -36,3 +38,7 @@ export VAR222; getopts "ac" var -a -b -c -d e; echo "4 rc:$? var:'$var' OPTIND:$
 export VAR333; getopts "ac" var -a -b -c -d e; echo "5 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 
 # All copies of code above should generate identical output
+
+) 2>&1 \
+| sed  -e 's/ unrecognized option: / invalid option -- /' \
+       -e 's/ illegal option -- / invalid option -- /' \