spec test index / oilshell.org
status | osh | osh_.py | osh_.cc | |
pass | 4 | 0 | 0 | |
FAIL | 0 | 4 | 4 | |
total | 4 | 4 | 4 | |
case | osh | osh_.py | osh_.cc | description |
0 | pass | FAIL | FAIL | Process sub input |
details | details | |||
1 | pass | FAIL | FAIL | Process sub output |
details | details | |||
2 | pass | FAIL | FAIL | Non-linear pipeline with >() |
details | details | |||
3 | pass | FAIL | FAIL | $(<file) idiom with process sub |
details | details |
4 passed, 0 OK, 0 not implemented, 0 BUG, 8 failed, 0 timeouts, 0 cases skipped
osh_.py | 0 Process sub input [osh_.py stdout] Expected '1\n2\n2\n3\n', got "1\n2\n3\n(cmd_value.Argv argv:[cat '' ''] arg_spids:[26 28 38])\n" stdout: 1 2 3 (cmd_value.Argv argv:[cat '' ''] arg_spids:[26 28 38])stderr: Unhandled SimpleCommand |
osh_.cc | 0 Process sub input [osh_.cc stdout] Expected '1\n2\n2\n3\n', got "1\n2\n3\n(cmd_value.Argv argv:[cat '' ''] arg_spids:[26 28 38])\n" stdout: 1 2 3 (cmd_value.Argv argv:[cat '' ''] arg_spids:[26 28 38])stderr: Unhandled SimpleCommand |
osh_.py | 1 Process sub output [osh_.py stdout] Expected '3\n2\n1\n', got '' [osh_.py status] Expected 0, got 1 stdout: stderr: { echo 1; echo 2; echo 3; } > >(tac) ^~ [ stdin ]:1: Redirect filename can't be empty |
osh_.cc | 1 Process sub output [osh_.cc stdout] Expected '3\n2\n1\n', got '1\n2\n3\n' stdout: 1 2 3stderr: |
osh_.py | 2 Non-linear pipeline with >() [osh_.py stdout] Expected 'OUT\nwarning: e2\no2\no1\n', got '' [osh_.py status] Expected 0, got 1 [osh_.py stderr] Found 'Traceback (most recent' stdout: stderr: Traceback (most recent call last): File "/home/andy/git/oilshell/oil/bin/osh_eval.py", line 71, in <module> sys.exit(main(sys.argv)) File "/home/andy/git/oilshell/oil/bin/osh_eval.py", line 35, in main status = pure.Main('osh', arg_r, environ, login_shell, loader, None) File "/home/andy/git/oilshell/oil/core/pure.py", line 446, in Main cmd_flags=cmd_eval.IsMainProgram) File "/home/andy/git/oilshell/oil/core/main_loop.py", line 168, in Batch is_return, is_fatal = cmd_ev.ExecuteAndCatch(node, cmd_flags=cmd_flags) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1464, in ExecuteAndCatch status = self._Execute(node) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1344, in _Execute status, check_errexit = self._Dispatch(node) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 581, in _Dispatch status = self._RunSimpleCommand(cmd_val, node.do_fork) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 489, in _RunSimpleCommand return self.shell_ex.RunSimpleCommand(cmd_val, do_fork) File "/home/andy/git/oilshell/oil/core/pure.py", line 513, in RunSimpleCommand return self.RunBuiltin(builtin_id, cmd_val) File "/home/andy/git/oilshell/oil/core/pure.py", line 476, in RunBuiltin builtin_func = self.builtins[builtin_id] KeyError: 32 |
osh_.cc | 2 Non-linear pipeline with >() [osh_.cc stdout] Expected 'OUT\nwarning: e2\no2\no1\n', got '' [osh_.cc status] Expected 0, got -6 stdout: stderr: osh_eval.dbg: mycpp/mylib.h:596: V Dict<int, vm::_Builtin *>::index(K) [K = int, V = vm::_Builtin *]: Assertion `0' failed. |
osh_.py | 3 $(<file) idiom with process sub [osh_.py stdout] Expected 'FOO\nhi\n', got 'FOO\n\n' [osh_.py status] Expected 0, got 1 stdout: FOOstderr: tr A-Z a-z < <(<foo) ^~ [ stdin ]:3: Redirect filename can't be empty cat < <(<foo; echo hi) ^~ [ stdin ]:4: Redirect filename can't be empty |
osh_.cc | 3 $(<file) idiom with process sub [osh_.cc stdout] Expected 'FOO\nhi\n', got 'FOO\n\n(cmd_value.Argv argv:[tr A-Z a-z] arg_spids:[14 16 18])\n(cmd_value.Argv argv:[cat] arg_spids:[27])\n' stdout: FOO (cmd_value.Argv argv:[tr A-Z a-z] arg_spids:[14 16 18]) (cmd_value.Argv argv:[cat] arg_spids:[27])stderr: Unhandled SimpleCommand Unhandled SimpleCommand |