From d684189241eee598bc9802843f5ad12fa630d063 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 8 Feb 2018 14:58:55 -0800 Subject: [PATCH] Don't output text in SRAM during unit test. --- compiler/sram.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/sram.py b/compiler/sram.py index 9fdc9840..72815dd5 100644 --- a/compiler/sram.py +++ b/compiler/sram.py @@ -75,7 +75,8 @@ class sram(design.design): self.DRC_LVS(final_verification=True) - print_time("SRAM creation", datetime.datetime.now(), start_time) + if not OPTS.is_unit_test: + print_time("SRAM creation", datetime.datetime.now(), start_time) def compute_sizes(self):