sanitycheck: disable expr parser debug
Hide the annoying expr parser message on every run "Generating LALR tables" Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
4d25b50c9c
commit
4701f0190c
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def p_error(p):
|
|||
else:
|
||||
raise SyntaxError("Unexpected end of expression")
|
||||
|
||||
parser = yacc.yacc()
|
||||
parser = yacc.yacc(debug=0)
|
||||
|
||||
def ast_sym(ast, env):
|
||||
if ast in env:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue