spec test index / oilshell.org
| status | osh | osh_.py | osh_.cc | |
| pass | 8 | 8 | 8 | |
| ok | 2 | 0 | 0 | |
| FAIL | 0 | 2 | 2 | |
| total | 10 | 10 | 10 | |
| case | osh | osh_.py | osh_.cc | description |
| 0 | pass | pass | pass | echo keyword |
| 1 | pass | pass | pass | if/else |
| 2 | pass | pass | pass | Turn an array into an integer. |
| 3 | pass | pass | pass | assign readonly -- one line |
| 4 | pass | pass | pass | assign readonly -- multiple lines |
| 5 | pass | pass | pass | assign readonly -- multiple lines -- set -o posix |
| 6 | pass | pass | pass | unset readonly -- one line |
| 7 | pass | pass | pass | unset readonly -- multiple lines |
| 8 | ok | FAIL | FAIL | First word like foo$x() and foo$[1+2] (regression) |
| details | details | details | ||
| 9 | ok | FAIL | FAIL | Function names |
| details | details | details |
24 passed, 2 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped
| osh | 8 First word like foo$x() and foo$[1+2] (regression) stdout: DONEstderr: foo$identity('z')
^~~
[ stdin ]:1: 'fooz' not found
foo$[1+2]
^~~
[ stdin ]:3: 'foo3' not found
|
| osh_.py | 8 First word like foo$x() and foo$[1+2] (regression) [osh_.py stdout] Expected 'DONE\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/travis/build/oilshell/oil/bin/osh_eval.py", line 68, in <module>
sys.exit(main(sys.argv))
File "/home/travis/build/oilshell/oil/bin/osh_eval.py", line 36, in main
None)
File "/home/travis/build/oilshell/oil/core/shell_native.py", line 476, in Main
cmd_flags=cmd_eval.IsMainProgram)
File "/home/travis/build/oilshell/oil/core/main_loop.py", line 309, in Batch
node = c_parser.ParseLogicalLine() # can raise ParseError
File "/home/travis/build/oilshell/oil/osh/cmd_parse.py", line 2217, in ParseLogicalLine
self._NewlineOk()
File "/home/travis/build/oilshell/oil/osh/cmd_parse.py", line 573, in _NewlineOk
self._Peek()
File "/home/travis/build/oilshell/oil/osh/cmd_parse.py", line 531, in _Peek
w = self.w_parser.ReadWord(self.next_lex_mode)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1773, in ReadWord
w, need_more = self._ReadWord(lex_mode)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1713, in _ReadWord
w = self._ReadCompoundWord(lex_mode)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1446, in _ReadCompoundWord
return self._ReadCompoundWord3(lex_mode, Id.Undefined_Tok, True)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1506, in _ReadCompoundWord3
self._ParseCallArguments(arglist)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1363, in _ParseCallArguments
self.parse_ctx.ParseOilArgList(self.lexer, arglist)
File "/home/travis/build/oilshell/oil/frontend/parse_lib.py", line 363, in ParseOilArgList
pnode, last_token = self._ParseOil(lexer, grammar_nt.oil_arglist)
File "/home/travis/build/oilshell/oil/frontend/parse_lib.py", line 318, in _ParseOil
return self.e_parser.Parse(lexer, start_symbol)
File "/home/travis/build/oilshell/oil/oil_lang/expr_parse.py", line 311, in Parse
self.push_parser.setup(start_symbol)
File "/home/travis/build/oilshell/oil/pgen2/parse.py", line 111, in setup
self.stack = [_StackItem(self.grammar.dfas[start], 0, newnode)]
AttributeError: 'NoneType' object has no attribute 'dfas'
|
| osh_.cc | 8 First word like foo$x() and foo$[1+2] (regression) [osh_.cc stdout] Expected 'DONE\n', got '' [osh_.cc status] Expected 0, got -6 stdout: stderr: osh_eval.opt: cpp/pgen2_parse.cc:8: void parse::Parser::setup(int): Assertion `0' failed. |
| osh | 9 Function names stdout: stderr: foo$x() {
^~~
[ stdin ]:1: fatal: Expected function named 'x', got (value.Undef)
|
| osh_.py | 9 Function names [osh_.py stderr] Found 'Traceback (most recent' stdout: stderr: Traceback (most recent call last):
File "/home/travis/build/oilshell/oil/bin/osh_eval.py", line 68, in <module>
sys.exit(main(sys.argv))
File "/home/travis/build/oilshell/oil/bin/osh_eval.py", line 36, in main
None)
File "/home/travis/build/oilshell/oil/core/shell_native.py", line 476, in Main
cmd_flags=cmd_eval.IsMainProgram)
File "/home/travis/build/oilshell/oil/core/main_loop.py", line 309, in Batch
node = c_parser.ParseLogicalLine() # can raise ParseError
File "/home/travis/build/oilshell/oil/osh/cmd_parse.py", line 2217, in ParseLogicalLine
self._NewlineOk()
File "/home/travis/build/oilshell/oil/osh/cmd_parse.py", line 573, in _NewlineOk
self._Peek()
File "/home/travis/build/oilshell/oil/osh/cmd_parse.py", line 531, in _Peek
w = self.w_parser.ReadWord(self.next_lex_mode)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1773, in ReadWord
w, need_more = self._ReadWord(lex_mode)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1713, in _ReadWord
w = self._ReadCompoundWord(lex_mode)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1446, in _ReadCompoundWord
return self._ReadCompoundWord3(lex_mode, Id.Undefined_Tok, True)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1506, in _ReadCompoundWord3
self._ParseCallArguments(arglist)
File "/home/travis/build/oilshell/oil/osh/word_parse.py", line 1363, in _ParseCallArguments
self.parse_ctx.ParseOilArgList(self.lexer, arglist)
File "/home/travis/build/oilshell/oil/frontend/parse_lib.py", line 363, in ParseOilArgList
pnode, last_token = self._ParseOil(lexer, grammar_nt.oil_arglist)
File "/home/travis/build/oilshell/oil/frontend/parse_lib.py", line 318, in _ParseOil
return self.e_parser.Parse(lexer, start_symbol)
File "/home/travis/build/oilshell/oil/oil_lang/expr_parse.py", line 311, in Parse
self.push_parser.setup(start_symbol)
File "/home/travis/build/oilshell/oil/pgen2/parse.py", line 111, in setup
self.stack = [_StackItem(self.grammar.dfas[start], 0, newnode)]
AttributeError: 'NoneType' object has no attribute 'dfas'
|
| osh_.cc | 9 Function names [osh_.cc status] Expected 1, got -6 stdout: stderr: osh_eval.opt: cpp/pgen2_parse.cc:8: void parse::Parser::setup(int): Assertion `0' failed. |