Use cell_properties to override cell names

This commit is contained in:
mrg
2020-11-03 07:06:01 -08:00
parent da721a677d
commit cb3e9517bb
5 changed files with 12 additions and 279 deletions
+2 -2
View File
@@ -8,19 +8,19 @@
#
import unittest
from testutils import *
import sys,os
import sys, os
sys.path.append(os.getenv("OPENRAM_HOME"))
import globals
from globals import OPTS
from sram_factory import factory
import debug
class dff_buf_test(openram_test):
def runTest(self):
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
globals.init_openram(config_file)
debug.info(2, "Testing dff_buf 4x 8x")
a = factory.create(module_type="dff_buf", inv1_size=4, inv2_size=8)
self.local_check(a)