spec test index / oilshell.org
61 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_ALT | 17 read --raw-line --j8 [osh_ALT 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_ALT | 20 read --all-lines [osh_ALT 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_ALT | 21 read --all-lines --with-eol [osh_ALT 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 |
osh_ALT | 33 type(x) [osh_ALT 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_ALT 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 |
osh_ALT | 34 source ///osh/two.sh and $LIB_OSH [osh_ALT stdout] Expected 'status=0\nstatus=0\nstatus=2\nstatus=2\n', got 'status=2\nstatus=2\nstatus=2\nstatus=2\n' stdout: status=2 status=2 status=2 status=2stderr: source ///osh/two.sh ^ [ stdin ]:1: source failed: No builtin file 'stdlib/osh/two.sh' source $LIB_OSH/two.sh ^~~~~~~~ [ stdin ]:4: source failed: No builtin file 'stdlib/osh/two.sh' source /// ^ [ stdin ]:7: source failed: No builtin file 'stdlib/' source ///x ^ [ stdin ]:9: source failed: No builtin file 'stdlib/x' |