ysh-slice-range () { run-file ysh-slice-range "$@" } run-file () { local spec_name=$1; shift; sh-spec spec/$spec_name.test.sh --compare-shells --oils-bin-dir $PWD/bin "$@" }
spec test index / oilshell.org
status | osh | |
pass | 10 | |
FAIL | 1 | |
total | 11 | |
case | osh | description |
0 | pass | precedence of 1:3 vs comparison |
1 | pass | precedence of 1:3 vs bitwise operator |
2 | pass | subscript and slice :| 1 2 3 4 | |
3 | pass | slice subscripts are adjusted like Python |
4 | pass | subscript and slice of List |
5 | pass | expressions and negative indices |
6 | pass | Index with expression |
7 | pass | Copy with a[:] |
8 | pass | Iterate over range |
9 | pass | Loops over bogus ranges terminate |
10 | FAIL | Slices with Multiple Dimensions (for TSV8?) |
details |
10 passed, 0 OK, 0 not implemented, 0 BUG, 1 failed, 0 timeouts, 0 cases skipped 1 failed under osh
osh | 10 Slices with Multiple Dimensions (for TSV8?) [osh stdout] Expected "(Str) 'TODO: Table Slicing'\n(Str) 'TODO: Table Slicing'\n" Got '' [osh status] Expected 0, got 2 stdout: stderr: qtt pretty :mytable <<< ''' ^~~ [ stdin ]:1: 'qtt' not found (OILS-ERR-100) var t1 = mytable[2:, :] ^ [ stdin ]:8: Only 1 subscript is accepted |