Moved output of tests 23-25 to openram_temp

This commit is contained in:
Matt Guthaus 2016-11-12 11:15:34 -08:00
parent 7fcce2633f
commit 475a5223a7
3 changed files with 4 additions and 8 deletions

View File

@ -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

View File

@ -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)

View File

@ -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)