spec test index / oilshell.org
106 passed, 0 OK, 0 not implemented, 0 BUG, 5 failed, 0 timeouts, 0 cases skipped 5 failed under osh
osh | 17 Wrong sigil $range() shows representation of iterator? [osh stdout] Expected 'TODO\n', got 'xrange(10, 16, 2)\n' stdout: xrange(10, 16, 2)stderr: |
osh_ALT | 17 Wrong sigil $range() shows representation of iterator? [osh_ALT stdout] Expected 'TODO\n', got 'xrange(10, 16, 2)\n' stdout: xrange(10, 16, 2)stderr: |
osh | 18 Wrong sigil @max(3, 4) [osh stdout] Expected 'TODO\n', got '' [osh status] Expected 0, got 1 [osh stderr] Found 'Traceback (most recent' stdout: stderr: Traceback (most recent call last): File "/home/andy/git/oilshell/oil/bin/oil.py", line 1048, in <module> sys.exit(main(sys.argv)) File "/home/andy/git/oilshell/oil/bin/oil.py", line 994, in main return AppBundleMain(argv) File "/home/andy/git/oilshell/oil/bin/oil.py", line 964, in AppBundleMain status = ShellMain('osh', argv0, main_argv, login_shell, line_input) File "/home/andy/git/oilshell/oil/bin/oil.py", line 741, in ShellMain 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 1461, in ExecuteAndCatch status = self._Execute(node) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1341, in _Execute status, check_errexit = self._Dispatch(node) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 547, in _Dispatch cmd_val = self.word_ev.EvalWordSequence2(words, allow_assign=True) File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1847, in EvalWordSequence2 return self.StaticEvalWordSequence2(words, allow_assign) File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1807, in StaticEvalWordSequence2 self._EvalWordToParts(w, False, part_vals) # not double quoted File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1455, in _EvalWordToParts self._EvalWordPart(p, part_vals, quoted=quoted, is_subst=is_subst) File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1424, in _EvalWordPart a = [str(item) for item in func(*pos_args, **named_args)] TypeError: 'int' object is not iterable |
osh_ALT | 18 Wrong sigil @max(3, 4) [osh_ALT stdout] Expected 'TODO\n', got '' [osh_ALT status] Expected 0, got 1 [osh_ALT stderr] Found 'Traceback (most recent' stdout: stderr: Traceback (most recent call last): File "/home/andy/git/oilshell/oil/bin/oil.py", line 1023, in _cpython_main_hook sys.exit(main(sys.argv)) File "/home/andy/git/oilshell/oil/bin/oil.py", line 994, in main return AppBundleMain(argv) File "/home/andy/git/oilshell/oil/bin/oil.py", line 964, in AppBundleMain status = ShellMain('osh', argv0, main_argv, login_shell, line_input) File "/home/andy/git/oilshell/oil/bin/oil.py", line 741, in ShellMain cmd_flags=cmd_eval.IsMainProgram) File "/home/andy/git/oilshell/oil/core/main_loop.py", line 174, in Batch return status File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1461, in ExecuteAndCatch status = self._Execute(node) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1341, in _Execute status, check_errexit = self._Dispatch(node) File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 596, in _Dispatch self.mem.PopTemp() File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1847, in EvalWordSequence2 return self.StaticEvalWordSequence2(words, allow_assign) File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1807, in StaticEvalWordSequence2 self._EvalWordToParts(w, False, part_vals) # not double quoted File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1455, in _EvalWordToParts self._EvalWordPart(p, part_vals, quoted=quoted, is_subst=is_subst) File "/home/andy/git/oilshell/oil/osh/word_eval.py", line 1437, in _EvalWordPart part_vals.append(part_val) TypeError: 'int' object is not iterable FATAL: couldn't import from app bundle '/home/andy/git/oilshell/oil/_tmp/oil-tar-test/oil-0.8.pre6/_bin/osh' (1) Stripping the oil.ovm binary may cause this error. See https://github.com/oilshell/oil/issues/47 |
osh | 19 nested expr contexts [osh stdout] Expected 'len\n3\n', got '' [osh status] Expected 0, got 1 [osh stderr] Found 'Traceback (most recent' stdout: stderr: Traceback (most recent call last): File "/home/andy/git/oilshell/oil/bin/oil.py", line 1048, in <module> sys.exit(main(sys.argv)) File "/home/andy/git/oilshell/oil/bin/oil.py", line 994, in main return AppBundleMain(argv) File "/home/andy/git/oilshell/oil/bin/oil.py", line 964, in AppBundleMain status = ShellMain('osh', argv0, main_argv, login_shell, line_input) File "/home/andy/git/oilshell/oil/bin/oil.py", line 741, in ShellMain cmd_flags=cmd_eval.IsMainProgram) File "/home/andy/git/oilshell/oil/core/main_loop.py", line 153, in Batch node = c_parser.ParseLogicalLine() # can raise ParseError File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2062, in ParseLogicalLine node = self._ParseCommandLine() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1924, in _ParseCommandLine child = self.ParseAndOr() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1854, in ParseAndOr child = self.ParsePipeline() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1800, in ParsePipeline child = self.ParseCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1714, in ParseCommand return self.ParseCompoundCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1476, in ParseCompoundCommand return self.w_parser.ParseVarDecl(kw_token) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 846, in ParseVarDecl enode, last_token = self.parse_ctx.ParseVarDecl(kw_token, self.lexer) File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 325, in ParseVarDecl pnode, last_token = self.e_parser.Parse(lexer, grammar_nt.oil_var_decl) File "/home/andy/git/oilshell/oil/oil_lang/expr_parse.py", line 311, in Parse lexer) File "/home/andy/git/oilshell/oil/oil_lang/expr_parse.py", line 215, in _PushOilTokens node = c_parser.ParseCommandSub() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2100, in ParseCommandSub c_list = self._ParseCommandTerm() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1987, in _ParseCommandTerm child = self.ParseAndOr() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1854, in ParseAndOr child = self.ParsePipeline() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1800, in ParsePipeline child = self.ParseCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1774, in ParseCommand return self.ParseSimpleCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 823, in ParseSimpleCommand redirects, words, block = self._ScanSimpleCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 561, in _ScanSimpleCommand self._Peek() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 422, in _Peek w = self.w_parser.ReadWord(self.next_lex_mode) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1462, in ReadWord w, need_more = self._ReadWord(lex_mode) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1422, in _ReadWord w = self._ReadCompoundWord(lex_mode) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1163, in _ReadCompoundWord return self._ReadCompoundWord3(lex_mode, Id.Undefined_Tok, True) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1261, in _ReadCompoundWord3 self._ParseCallArguments(arglist) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1159, in _ParseCallArguments self.parse_ctx.ParseOilArgList(self.lexer, arglist) File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 354, in ParseOilArgList raise AssertionError() AssertionError |
osh_ALT | 19 nested expr contexts [osh_ALT stdout] Expected 'len\n3\n', got '' [osh_ALT status] Expected 0, got 1 [osh_ALT stderr] Found 'Traceback (most recent' stdout: stderr: Traceback (most recent call last): File "/home/andy/git/oilshell/oil/bin/oil.py", line 1023, in _cpython_main_hook sys.exit(main(sys.argv)) File "/home/andy/git/oilshell/oil/bin/oil.py", line 994, in main return AppBundleMain(argv) File "/home/andy/git/oilshell/oil/bin/oil.py", line 964, in AppBundleMain status = ShellMain('osh', argv0, main_argv, login_shell, line_input) File "/home/andy/git/oilshell/oil/bin/oil.py", line 741, in ShellMain cmd_flags=cmd_eval.IsMainProgram) File "/home/andy/git/oilshell/oil/core/main_loop.py", line 153, in Batch node = c_parser.ParseLogicalLine() # can raise ParseError File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2062, in ParseLogicalLine node = self._ParseCommandLine() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1924, in _ParseCommandLine child = self.ParseAndOr() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1854, in ParseAndOr child = self.ParsePipeline() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1800, in ParsePipeline child = self.ParseCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1714, in ParseCommand return self.ParseCompoundCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1476, in ParseCompoundCommand return self.w_parser.ParseVarDecl(kw_token) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 846, in ParseVarDecl enode, last_token = self.parse_ctx.ParseVarDecl(kw_token, self.lexer) File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 325, in ParseVarDecl pnode, last_token = self.e_parser.Parse(lexer, grammar_nt.oil_var_decl) File "/home/andy/git/oilshell/oil/oil_lang/expr_parse.py", line 311, in Parse lexer) File "/home/andy/git/oilshell/oil/oil_lang/expr_parse.py", line 291, in _PushOilTokens raise parse.ParseError("incomplete input", tok.id, tok) File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2100, in ParseCommandSub c_list = self._ParseCommandTerm() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 2030, in _ParseCommandTerm return command.CommandList(children) File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1854, in ParseAndOr child = self.ParsePipeline() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1800, in ParsePipeline child = self.ParseCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 1774, in ParseCommand return self.ParseSimpleCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 823, in ParseSimpleCommand redirects, words, block = self._ScanSimpleCommand() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 561, in _ScanSimpleCommand self._Peek() File "/home/andy/git/oilshell/oil/osh/cmd_parse.py", line 422, in _Peek w = self.w_parser.ReadWord(self.next_lex_mode) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1475, in ReadWord return self.cursor File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1422, in _ReadWord w = self._ReadCompoundWord(lex_mode) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1163, in _ReadCompoundWord return self._ReadCompoundWord3(lex_mode, Id.Undefined_Tok, True) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1261, in _ReadCompoundWord3 self._ParseCallArguments(arglist) File "/home/andy/git/oilshell/oil/osh/word_parse.py", line 1159, in _ParseCallArguments self.parse_ctx.ParseOilArgList(self.lexer, arglist) File "/home/andy/git/oilshell/oil/frontend/parse_lib.py", line 354, in ParseOilArgList raise AssertionError() AssertionError FATAL: couldn't import from app bundle '/home/andy/git/oilshell/oil/_tmp/oil-tar-test/oil-0.8.pre6/_bin/osh' (1) Stripping the oil.ovm binary may cause this error. See https://github.com/oilshell/oil/issues/47 |
osh | 33 Float Literals with _ (requires re2c refinement) [osh stdout] Expected 'less\ngreat\n', got '' [osh status] Expected 0, got 2 stdout: stderr: var x = 1.2 + 2_3.0e-1 # 3.5 ^~~~ [ stdin ]:2: Syntax error in expression (near Id.Expr_Float) |
osh_ALT | 33 Float Literals with _ (requires re2c refinement) [osh_ALT stdout] Expected 'less\ngreat\n', got '' [osh_ALT status] Expected 0, got 2 stdout: stderr: var x = 1.2 + 2_3.0e-1 # 3.5 ^~~~ [ stdin ]:2: Syntax error in expression (near Id.Expr_Float) |
osh | 56 obj.method does NOT give you a bound method [osh stdout] Expected '', got '<built-in method upper of str object at 0x7fb93fa25418>\n' stdout: <built-in method upper of str object at 0x7fb93fa25418>stderr: |
osh_ALT | 56 obj.method does NOT give you a bound method [osh_ALT stdout] Expected '', got '<built-in method upper of str object at 0x7f4efbcf9850>\n' stdout: <built-in method upper of str object at 0x7f4efbcf9850>stderr: |