| case | dash | bash | mksh | osh | osh_ALT | description |
| 0 | pass | pass | pass | pass | pass | echo dashes |
| 1 | N-I | pass | pass | FAIL | FAIL | echo -en |
| details | details | details | ||||
| 2 | BUG | pass | BUG | pass | pass | echo -ez (invalid flag) |
| details | details | |||||
| 3 | pass | pass | pass | pass | pass | exec builtin |
| 4 | pass | pass | pass | pass | pass | exec builtin with redirects |
| 5 | pass | pass | pass | pass | pass | exec builtin with here doc |
| 6 | pass | pass | pass | pass | pass | cd and $PWD |
| 7 | pass | pass | pass | pass | pass | $OLDPWD |
| 8 | N-I | pass | N-I | pass | pass | pushd/popd |
| details | details | |||||
| 9 | pass | pass | pass | pass | pass | Source |
| 10 | pass | pass | pass | pass | pass | Exit builtin |
| 11 | ok | ok | pass | pass | pass | Exit builtin with invalid arg |
| details | details | |||||
| 12 | BUG | pass | ok | pass | pass | Exit builtin with too many args |
| details | details | |||||
| 13 | BUG | pass | pass | pass | pass | time block |
| details | ||||||
| 14 | pass | pass | pass | pass | pass | time pipeline |
| 15 | pass | pass | pass | pass | pass | shift |
| 16 | ok | pass | pass | pass | pass | Shifting too far |
| details | ||||||
| 17 | ok | pass | BUG | pass | pass | Invalid shift argument |
| details | details | |||||
| 18 | pass | pass | pass | pass | pass | Read builtin |
| 19 | pass | pass | pass | pass | pass | Read builtin with no newline. |
| 20 | pass | pass | pass | pass | pass | Read builtin with multiple variables |
| 21 | pass | pass | pass | pass | pass | Read builtin with not enough variables |
| 22 | pass | pass | pass | pass | pass | get umask |
| 23 | pass | pass | pass | pass | pass | set umask in octal |
| 24 | pass | pass | pass | FAIL | FAIL | set umask symbolically |
| details | details |
108 passed, 5 ok, 3 known unimplemented, 5 known bugs, 2 failed, 0 skipped
| dash | 1 echo -en stdout: -en abc defstderr: |
| osh | 1 echo -en [osh stdout] Expected u'abc\ndef\n', got 'abc\\ndef\\n' stdout: abc\ndef\nstderr: osh warning: *** echo -e not implemented *** |
| osh_ALT | 1 echo -en [osh_ALT stdout] Expected u'abc\ndef\n', got 'abc\\ndef\\n' stdout: abc\ndef\nstderr: osh warning: *** echo -e not implemented *** |
| dash | 2 echo -ez (invalid flag) stdout: -ez abcstderr: |
| mksh | 2 echo -ez (invalid flag) stdout: -ez abcstderr: |
| dash | 8 pushd/popd stdout: stderr: /bin/dash: 3: pushd: not found |
| mksh | 8 pushd/popd stdout: stderr: /bin/mksh: <stdin>[3]: pushd: not found |
| dash | 11 Exit builtin with invalid arg stdout: stderr: /bin/dash: 1: exit: Illegal number: invalid |
| bash | 11 Exit builtin with invalid arg stdout: stderr: /bin/bash: line 1: exit: invalid: numeric argument required |
| dash | 12 Exit builtin with too many args stdout: stderr: |
| mksh | 12 Exit builtin with too many args stdout: stderr: /bin/mksh: <stdin>[1]: exit: too many arguments |
| dash | 13 time block stdout: stderr: time: cannot run {: No such file or directory
Command exited with non-zero status 127
0.00user 0.00system 0:00.00elapsed ?%CPU (0avgtext+0avgdata 1176maxresident)k
0inputs+0outputs (0major+28minor)pagefaults 0swaps
/bin/dash: 7: Syntax error: "}" unexpected
|
| dash | 16 Shifting too far stdout: stderr: /bin/dash: 2: shift: can't shift that many |
| dash | 17 Invalid shift argument stdout: stderr: /bin/dash: 1: shift: Illegal number: ZZZ |
| mksh | 17 Invalid shift argument stdout: stderr: |
| osh | 24 set umask symbolically [osh stdout] Expected u'664\n644\n', got '664\n664\n' [osh stderr] Expected u'', got 'osh warning: *** umask with symbolic input not implemented ***\n' stdout: 664 664stderr: osh warning: *** umask with symbolic input not implemented *** |
| osh_ALT | 24 set umask symbolically [osh_ALT stdout] Expected u'664\n644\n', got '664\n664\n' [osh_ALT stderr] Expected u'', got 'osh warning: *** umask with symbolic input not implemented ***\n' stdout: 664 664stderr: osh warning: *** umask with symbolic input not implemented *** |