Home | History | Annotate | Download | only in functional

Lines Matching full:errors

423     found, errors = execParser(t057autoAST46Lexer, t057autoAST46Parser, "decl", "int 34 x=1;",
426 errors);
431 found, errors = execParser(t057autoAST47Lexer, t057autoAST47Parser, "decl", "int =1;",
433 assertEquals(["line 1:4 missing ID at u'='"], errors);
438 found, errors = execParser(t057autoAST48Lexer, t057autoAST48Parser, "decl", "x=1;",
440 assertEquals(["line 1:0 mismatched input u'x' expecting set None"], errors);
445 found, errors = execParser(t057autoAST49Lexer, t057autoAST49Parser, "a", "abc", true);
446 assertEquals(["line 0:-1 missing INT at '<EOF>'"], errors);
451 found, errors = execParser(t057autoAST50Lexer, t057autoAST50Parser, "a", "abc", true);
452 assertEquals(["line 0:-1 missing INT at '<EOF>'"], errors);
457 found, errors = execParser(t057autoAST51Lexer, t057autoAST51Parser, "a", "abc ick 34",
460 errors);
465 found, errors = execParser(t057autoAST52Lexer, t057autoAST52Parser, "a", "34", true);
466 assertEquals(["line 1:0 missing ID at u'34'"], errors);
471 found, errors = execParser(t057autoAST53Lexer, t057autoAST53Parser, "a", "34", true);
475 assertEquals(["line 1:0 missing ID at u'34'"], errors);
480 found, errors = execParser(t057autoAST54Lexer, t057autoAST54Parser, "a", "*", true);
482 errors);