diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-11 17:00:39 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-11 17:00:39 +0200 |
commit | 129e1ce72c28ec14aee459cceffc25ed9d5cae85 (patch) | |
tree | 533c3003e9324d4c35762c1f4ccf2d3d56215927 /shell/ash_test/ash-getopts/getopt_test_libc_bug.right | |
parent | d16e612c93d1a698c1a9d931b786cf3500996ae3 (diff) |
hush: add a test which fails due to uclibc bug in getopt()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-getopts/getopt_test_libc_bug.right')
-rw-r--r-- | shell/ash_test/ash-getopts/getopt_test_libc_bug.right | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/shell/ash_test/ash-getopts/getopt_test_libc_bug.right b/shell/ash_test/ash-getopts/getopt_test_libc_bug.right new file mode 100644 index 000000000..f6ad4602d --- /dev/null +++ b/shell/ash_test/ash-getopts/getopt_test_libc_bug.right @@ -0,0 +1,26 @@ +*** optstring:'ac' args:-a -b -c -d e +1 rc:0 var:'a' OPTIND:2 OPTARG:'' +Illegal option -b +2 rc:0 var:'?' OPTIND:3 OPTARG:'' +3 rc:0 var:'c' OPTIND:4 OPTARG:'' +Illegal option -d +4 rc:0 var:'?' OPTIND:5 OPTARG:'' +5 rc:1 var:'?' OPTIND:5 OPTARG:'' + +*** optstring:'ac' args:-a -b -c -d e +1 rc:0 var:'a' OPTIND:2 OPTARG:'' +Illegal option -b +2 rc:0 var:'?' OPTIND:3 OPTARG:'' +3 rc:0 var:'c' OPTIND:4 OPTARG:'' +Illegal option -d +4 rc:0 var:'?' OPTIND:5 OPTARG:'' +5 rc:1 var:'?' OPTIND:5 OPTARG:'' + +*** optstring:'ac' args:-a -b -c -d e +1 rc:0 var:'a' OPTIND:2 OPTARG:'' +Illegal option -b +2 rc:0 var:'?' OPTIND:3 OPTARG:'' +3 rc:0 var:'c' OPTIND:4 OPTARG:'' +Illegal option -d +4 rc:0 var:'?' OPTIND:5 OPTARG:'' +5 rc:1 var:'?' OPTIND:5 OPTARG:'' |