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:
Anas Nashif 2017-12-06 10:00:58 -05:00 committed by Anas Nashif
commit 4701f0190c

View file

@ -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: