From f320017b86b5f4858bf978519ba19c7909fc86b9 Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 1 Dec 2020 17:12:17 -0800 Subject: [PATCH] Decrease verbosity of script output --- compiler/verify/run_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/verify/run_script.py b/compiler/verify/run_script.py index fff0c875..05a9afb9 100644 --- a/compiler/verify/run_script.py +++ b/compiler/verify/run_script.py @@ -19,7 +19,7 @@ from globals import OPTS def run_script(cell_name, script="lvs"): """ Run script and create output files. """ - echo_cmd_output = OPTS.verbose_level > 0 and not OPTS.is_unit_test + echo_cmd_output = OPTS.verbose_level > 1 cwd = os.getcwd() os.chdir(OPTS.openram_temp)