spec test index / oilshell.org
31 passed, 0 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped 4 failed under osh
| osh | 17 read --raw-line --j8 [osh stdout] Expected 'foo\n', got '\n' stdout: stderr: echo $'u\'foo\'' | read --raw-line --j8
^~~~
[ stdin ]:1: 'read' got invalid flag '--j8'
|
| osh | 20 read --all-lines [osh stdout] Expected '1 2 3\n', got '@nums\n' stdout: @numsstderr: seq 3 | read --all-lines :nums
^~~~~~~~~~~
[ stdin ]:1: 'read' got invalid flag '--all-lines'
|
| osh | 21 read --all-lines --with-eol [osh stdout] Expected '1\n2\n3\n', got '@nums\n' stdout: @numsstderr: seq 3 | read --all-lines --with-eol :nums
^~~~~~~~~~~
[ stdin ]:1: 'read' got invalid flag '--all-lines'
|
| osh | 33 type(x) [osh stdout] Expected 'Int\nStr\nBool\nFloat\nList\nDict\nNull\nFunc\nBuiltinFunc\nBoundFunc\nBoundFunc\nRange\n' Got 'Int\nStr\nBool\nFloat\nList\nDict\nNull\nFunc\nBuiltinFunc\nBoundFunc\n' [osh status] Expected 0, got 3 stdout: Int Str Bool Float List Dict Null Func BuiltinFunc BoundFuncstderr: echo $[type('foo'=>join)] # Type error happens later
^~~~
[ stdin ]:18: fatal: Fat arrow => expects method or function, got BuiltinFunc
|