Results for bugs.test.sh

statusoshosh_.pyosh_.cc
pass 888
ok 200
FAIL 022
total101010
caseoshosh_.pyosh_.ccdescription
0pass pass pass echo keyword
1pass pass pass if/else
2pass pass pass Turn an array into an integer.
3pass pass pass assign readonly -- one line
4pass pass pass assign readonly -- multiple lines
5pass pass pass assign readonly -- multiple lines -- set -o posix
6pass pass pass unset readonly -- one line
7pass pass pass unset readonly -- multiple lines
8ok FAIL FAIL First word like foo$x() and foo$[1+2] (regression)
detailsdetailsdetails
9ok FAIL FAIL Function names
detailsdetailsdetails
24 passed, 2 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped

Details on runs that didn't PASS

osh8 First word like foo$x() and foo$[1+2] (regression)

stdout:
DONE
stderr:
  foo$identity('z')
  ^~~
[ stdin ]:1: 'fooz' not found
  foo$[1+2]
  ^~~
[ stdin ]:3: 'foo3' not found
osh_.py8 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/andy/git/oilshell/oil/bin/osh_eval.py", line 68, in <module>
    sys.exit(main(sys.argv))
  File "/home/andy/git/oilshell/oil/bin/osh_eval.py", line 36, in main
    None)
  File "/home/andy/git/oilshell/oil/core/shell_native.py", line 476, in Main
    cmd_flags=cmd_eval.IsMainProgram)
  File "/home/andy/git/oilshell/oil/core/main_loop.py", line 309, in Batch
    node = c_parser.ParseLogicalLine()  # can raise ParseError
  File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2219, in ParseLogicalLine
    self._NewlineOk()
  File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 575, in _NewlineOk
    self._Peek()
  File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 533, in _Peek
    w = self.w_parser.ReadWord(self.next_lex_mode)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1774, in ReadWord
    w, need_more = self._ReadWord(lex_mode)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1714, in _ReadWord
    w = self._ReadCompoundWord(lex_mode)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1447, in _ReadCompoundWord
    return self._ReadCompoundWord3(lex_mode, Id.Undefined_Tok, True)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1507, in _ReadCompoundWord3
    self._ParseCallArguments(arglist)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1364, in _ParseCallArguments
    self.parse_ctx.ParseOilArgList(self.lexer, arglist)
  File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 363, in ParseOilArgList
    pnode, last_token = self._ParseOil(lexer, grammar_nt.oil_arglist)
  File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 318, in _ParseOil
    return self.e_parser.Parse(lexer, start_symbol)
  File "/home/andy/git/oilshell/oil/oil_lang/expr_parse.py", line 311, in Parse
    self.push_parser.setup(start_symbol)
  File "/home/andy/git/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_.cc8 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.
osh9 Function names

stdout:
stderr: 
  foo$x() {
  ^~~
[ stdin ]:1: fatal: Expected function named 'x', got (value.Undef) 
osh_.py9 Function names

[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 68, in <module>
    sys.exit(main(sys.argv))
  File "/home/andy/git/oilshell/oil/bin/osh_eval.py", line 36, in main
    None)
  File "/home/andy/git/oilshell/oil/core/shell_native.py", line 476, in Main
    cmd_flags=cmd_eval.IsMainProgram)
  File "/home/andy/git/oilshell/oil/core/main_loop.py", line 309, in Batch
    node = c_parser.ParseLogicalLine()  # can raise ParseError
  File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2219, in ParseLogicalLine
    self._NewlineOk()
  File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 575, in _NewlineOk
    self._Peek()
  File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 533, in _Peek
    w = self.w_parser.ReadWord(self.next_lex_mode)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1774, in ReadWord
    w, need_more = self._ReadWord(lex_mode)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1714, in _ReadWord
    w = self._ReadCompoundWord(lex_mode)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1447, in _ReadCompoundWord
    return self._ReadCompoundWord3(lex_mode, Id.Undefined_Tok, True)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1507, in _ReadCompoundWord3
    self._ParseCallArguments(arglist)
  File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1364, in _ParseCallArguments
    self.parse_ctx.ParseOilArgList(self.lexer, arglist)
  File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 363, in ParseOilArgList
    pnode, last_token = self._ParseOil(lexer, grammar_nt.oil_arglist)
  File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 318, in _ParseOil
    return self.e_parser.Parse(lexer, start_symbol)
  File "/home/andy/git/oilshell/oil/oil_lang/expr_parse.py", line 311, in Parse
    self.push_parser.setup(start_symbol)
  File "/home/andy/git/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_.cc9 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.