spec test index / oilshell.org
| case | bash | mksh | zsh | osh | description |
| 0 | pass | pass | N-I | pass | Multiple right brackets inside expression |
| details | |||||
| 1 | pass | pass | pass | pass | Slicing of string with constants |
| 2 | pass | pass | pass | pass | Slicing of string with variables |
| 3 | pass | pass | ok | pass | Array index on LHS of assignment |
| details | |||||
| 4 | pass | pass | BUG | FAIL | Array index on LHS with spaces |
| details | details | ||||
| 5 | pass | pass | ok | pass | Array index on LHS with indices |
| details | |||||
| 6 | pass | BUG | BUG | pass | Slicing of string with expressions |
| details | details | ||||
| 7 | pass | BUG | BUG | pass | Ambiguous colon in slice |
| details | details | ||||
| 8 | pass | pass | pass | pass | Triple parens should be disambiguated |
| 9 | pass | pass | pass | pass | Quadruple parens should be disambiguated |
| 10 | pass | N-I | pass | pass | Alternative $[] syntax |
| details |
34 passed, 2 ok, 2 known unimplemented, 5 known bugs, 1 failed, 0 skipped
| zsh | 0 Multiple right brackets inside expression stdout: stderr: |
| zsh | 3 Array index on LHS of assignment stdout: X 2 3stderr: |
| zsh | 4 Array index on LHS with spaces stdout: stderr: zsh: bad pattern: a[zero |
| osh | 4 Array index on LHS with spaces [osh stdout] Expected '1 X 3\n', got '1 2 3\n' stdout: 1 2 3stderr: osh error: 'a[zero': No such file or directory |
| zsh | 5 Array index on LHS with indices stdout: X 2 3stderr: |
| mksh | 6 Slicing of string with expressions stdout: stderr: _tmp/spec-bin/mksh: <stdin>[3]: ${s:zero}: bad substitution
|
| zsh | 6 Slicing of string with expressions stdout: stderr: zsh: unrecognized modifier `z' |
| mksh | 7 Ambiguous colon in slice stdout: 2stderr: _tmp/spec-bin/mksh: <stdin>[3]: ${s: 0 < 1 ? 2 : 0 : 1}: bad substitution
|
| zsh | 7 Ambiguous colon in slice stdout: 2stderr: zsh: bad math expression: ':' expected |
| mksh | 10 Alternative $[] syntax stdout: $[1 + 2] $[3 * 4]stderr: |