mirror of https://github.com/VLSIDA/OpenRAM.git
Don't output text in SRAM during unit test.
This commit is contained in:
parent
17716191c1
commit
d684189241
|
|
@ -75,7 +75,8 @@ class sram(design.design):
|
||||||
|
|
||||||
self.DRC_LVS(final_verification=True)
|
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):
|
def compute_sizes(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue