spec test index / oilshell.org
status | osh | osh_.py | osh_.cc | |
pass | 12 | 8 | 5 | |
FAIL | 1 | 5 | 8 | |
total | 13 | 13 | 13 | |
case | osh | osh_.py | osh_.cc | description |
0 | pass | pass | FAIL | command -v |
details | ||||
1 | pass | pass | FAIL | command -v with multiple names |
details | ||||
2 | pass | FAIL | FAIL | command -v doesn't find non-executable file |
details | details | |||
3 | pass | FAIL | FAIL | command skips function lookup |
details | details | |||
4 | pass | FAIL | FAIL | command command seq 3 |
details | details | |||
5 | pass | pass | pass | command command -v seq |
6 | pass | FAIL | FAIL | history usage |
details | details | |||
7 | FAIL | FAIL | FAIL | history -d to delete history item |
details | details | details | ||
8 | pass | pass | pass | $(command type ls) |
9 | pass | pass | FAIL | builtin |
details | ||||
10 | pass | pass | pass | builtin ls not found |
11 | pass | pass | pass | builtin no args |
12 | pass | pass | pass | builtin command echo hi |
25 passed, 0 OK, 0 not implemented, 0 BUG, 14 failed, 0 timeouts, 0 cases skipped 1 failed under osh
osh_.cc | 0 command -v [osh_.cc stdout] Expected 'echo\n0\nmyfunc\n0\n1\nfor\n0\n', got 'echo\n0\nmyfunc\n0\n' [osh_.cc status] Expected 0, got -6 stdout: echo 0 myfunc 0stderr: osh_eval.dbg: _build/cpp/consts.cc:622: bool consts::IsControlFlow(Str *): Assertion `0' failed. |
osh_.cc | 1 command -v with multiple names [osh_.cc stdout] Expected 'echo\nmyfunc\nfor\nstatus=1\n', got '' [osh_.cc status] Expected 0, got -6 stdout: stderr: osh_eval.dbg: _build/cpp/consts.cc:622: bool consts::IsControlFlow(Str *): Assertion `0' failed. |
osh_.py | 2 command -v doesn't find non-executable file [osh_.py stdout] Expected 'status=1\n/executable\nstatus=0\n', got "(cmd_value.Argv argv:[touch '/non-executable' '/executable'] arg_spids:[7 9 12])\n(cmd_value.Argv argv:[chmod '+x' '/executable'] arg_spids:[15 17 20])\nstatus=0\nstatus=0\n" stdout: (cmd_value.Argv argv:[touch '/non-executable' '/executable'] arg_spids:[7 9 12]) (cmd_value.Argv argv:[chmod '+x' '/executable'] arg_spids:[15 17 20]) status=0 status=0stderr: Unhandled SimpleCommand Unhandled SimpleCommand |
osh_.cc | 2 command -v doesn't find non-executable file [osh_.cc stdout] Expected 'status=1\n/executable\nstatus=0\n', got "(cmd_value.Argv argv:[touch '/non-executable' '/executable'] arg_spids:[7 9 12])\n(cmd_value.Argv argv:[chmod '+x' '/executable'] arg_spids:[15 17 20])\nstatus=0\nstatus=0\n" stdout: (cmd_value.Argv argv:[touch '/non-executable' '/executable'] arg_spids:[7 9 12]) (cmd_value.Argv argv:[chmod '+x' '/executable'] arg_spids:[15 17 20]) status=0 status=0stderr: Unhandled SimpleCommand Unhandled SimpleCommand |
osh_.py | 3 command skips function lookup [osh_.py stdout] Expected '3\n1\n2\n3\n1\n2\n3\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 479, in RunBuiltin status = builtin_func.Run(cmd_val) File "/home/andy/git/oilshell/oil/osh/builtin_meta.py", line 168, in Run return self.shell_ex.RunSimpleCommand(cmd_val, True, call_procs=False) File "/home/andy/git/oilshell/oil/core/pure.py", line 491, in RunSimpleCommand arg0 = argv[0] IndexError: list index out of range |
osh_.cc | 3 command skips function lookup [osh_.cc stdout] Expected '3\n1\n2\n3\n1\n2\n3\n', got '3\n3\n' stdout: 3 3stderr: |
osh_.py | 4 command command seq 3 [osh_.py stdout] Expected '1\n2\n3\n', got '(cmd_value.Argv argv:[seq 3] arg_spids:[4 6])\n' stdout: (cmd_value.Argv argv:[seq 3] arg_spids:[4 6])stderr: Unhandled SimpleCommand |
osh_.cc | 4 command command seq 3 [osh_.cc stdout] Expected '1\n2\n3\n', got '(cmd_value.Argv argv:[seq 3] arg_spids:[4 6])\n' stdout: (cmd_value.Argv argv:[seq 3] arg_spids:[4 6])stderr: Unhandled SimpleCommand |
osh_.py | 6 history usage [osh_.py stdout] Expected 'status=0\nstatus=0\nstatus=2\nstatus=2\nstatus=2\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: 46 |
osh_.cc | 6 history usage [osh_.cc stdout] Expected 'status=0\nstatus=0\nstatus=2\nstatus=2\nstatus=2\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 | 7 history -d to delete history item [osh stdout] Expected 'status=0\nstatus=1\nstatus=1\n', got 'status=2\nstatus=2\nstatus=2\n' stdout: status=2 status=2 status=2stderr: history -d 1 ^~~~~~~ [ stdin ]:2: 'history' couldn't find item 1 history -d -1 ^~ [ stdin ]:4: 'history' got invalid integer for -d: -1 history -d -2 ^~ [ stdin ]:6: 'history' got invalid integer for -d: -2 |
osh_.py | 7 history -d to delete history item [osh_.py stdout] Expected 'status=0\nstatus=1\nstatus=1\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: 46 |
osh_.cc | 7 history -d to delete history item [osh_.cc stdout] Expected 'status=0\nstatus=1\nstatus=1\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_.cc | 9 builtin [osh_.cc stdout] Expected 'hi\n/\n', got 'hi\n' [osh_.cc status] Expected 0, got -6 stdout: histderr: osh_eval.dbg: cpp/pylib_os_path.h:10: Str *os_path::join(Str *, Str *): Assertion `0' failed. |