status | osh | osh-cpp | |
pass | 13 | 13 | |
ok | 1 | 1 | |
FAIL | 1 | 1 | |
total | 15 | 15 | |
case | osh | osh-cpp | description |
0 | pass | pass | (( )) result |
1 | pass | pass | negative number is true |
2 | pass | pass | (( )) in if statement |
3 | pass | pass | (( )) |
4 | pass | pass | (( )) with arrays |
5 | pass | pass | (( )) with error |
6 | pass | pass | bash and mksh: V in (( a[K] = V )) gets coerced to integer |
7 | ok | ok | bash: K in (( A[K] = V )) is a constant string |
details | details | ||
8 | pass | pass | BUG: (( V = A[K] )) doesn't retrieve the right value |
9 | pass | pass | bash: V in (( A["K"] = V )) gets coerced to integer |
10 | pass | pass | literal strings inside (( )) |
11 | FAIL | FAIL | (( )) with redirect |
details | details | ||
12 | pass | pass | Assigning whole raray (( b = a )) |
13 | pass | pass | set associative array |
14 | pass | pass | Example of incrementing associative array entry with var key (ble.sh) |
26 passed, 2 OK, 0 not implemented, 0 BUG, 1 failed, 0 timeouts, 0 cases skipped 1 failed under osh
osh | 7 bash: K in (( A[K] = V )) is a constant string stdout: stderr: (( A[K] = V )) ^ [ stdin ]:4: fatal: Assoc array keys must be strings: $x 'x' "$x" etc. (OILS-ERR-101) |
osh-cpp | 7 bash: K in (( A[K] = V )) is a constant string stdout: stderr: (( A[K] = V )) ^ [ stdin ]:4: fatal: Assoc array keys must be strings: $x 'x' "$x" etc. (OILS-ERR-101) |
osh | 11 (( )) with redirect [osh stdout] Expected '52\n--\nSTDERR\n', got '52\n--\n' stdout: 52 --stderr: |
osh-cpp | 11 (( )) with redirect [osh-cpp stdout] Expected '52\n--\nSTDERR\n', got '' [osh-cpp status] Expected 0, got -6 stdout: stderr: timeout: the monitored command dumped core |