mirror of https://github.com/VLSIDA/OpenRAM.git
Moved output of tests 23-25 to openram_temp
This commit is contained in:
parent
7fcce2633f
commit
475a5223a7
|
|
@ -32,13 +32,11 @@ class lib_test(unittest.TestCase):
|
|||
name="sram_2_16_1_{0}".format(OPTS.tech_name))
|
||||
OPTS.check_lvsdrc = True
|
||||
|
||||
|
||||
tempspice = OPTS.openram_temp + "temp.sp"
|
||||
s.sp_write(tempspice)
|
||||
|
||||
curpath=os.path.dirname(os.path.realpath(__file__)) + "/"
|
||||
filename = s.name + ".lib"
|
||||
libname = curpath + filename
|
||||
libname = OPTS.openram_temp + filename
|
||||
lib.lib(libname,s,tempspice)
|
||||
|
||||
# let's diff the result with a golden model
|
||||
|
|
|
|||
|
|
@ -32,11 +32,10 @@ class lef_test(unittest.TestCase):
|
|||
|
||||
OPTS.check_lvsdrc = True
|
||||
|
||||
curpath=os.path.dirname(os.path.realpath(__file__)) + "/"
|
||||
gdsfile = s.name + ".gds"
|
||||
leffile = s.name + ".lef"
|
||||
gdsname = curpath + gdsfile
|
||||
lefname = curpath + leffile
|
||||
gdsname = OPTS.openram_temp + gdsfile
|
||||
lefname = OPTS.openram_temp + leffile
|
||||
s.gds_write(gdsname)
|
||||
lef.lef(gdsname,lefname,s)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,9 +32,8 @@ class verilog_test(unittest.TestCase):
|
|||
|
||||
OPTS.check_lvsdrc = True
|
||||
|
||||
curpath=os.path.dirname(os.path.realpath(__file__)) + "/"
|
||||
vfile = s.name + ".v"
|
||||
vname = curpath + vfile
|
||||
vname = OPTS.openram_temp + vfile
|
||||
verilog.verilog(vname,s)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue