Change argument name for lib in tests as well.

This commit is contained in:
Matt Guthaus 2018-02-08 15:28:49 -08:00
parent d684189241
commit 3c86f94549
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class lib_test(openram_test):
filename = s.name + "_analytical.lib"
libname = OPTS.openram_temp + filename
lib.lib(libname=libname,sram=s,spfile=tempspice,use_model=True)
lib.lib(libname=libname,sram=s,sp_file=tempspice,use_model=True)
# let's diff the result with a golden model
golden = "{0}/golden/{1}".format(os.path.dirname(os.path.realpath(__file__)),filename)

View File

@ -41,7 +41,7 @@ class lib_test(openram_test):
filename = s.name + "_pruned.lib"
libname = OPTS.openram_temp + filename
lib.lib(libname=libname,sram=s,spfile=tempspice,use_model=False)
lib.lib(libname=libname,sram=s,sp_file=tempspice,use_model=False)
# let's diff the result with a golden model
golden = "{0}/golden/{1}".format(os.path.dirname(os.path.realpath(__file__)),filename)

View File

@ -41,7 +41,7 @@ class lib_test(openram_test):
filename = s.name + ".lib"
libname = OPTS.openram_temp + filename
lib.lib(libname=libname,sram=s,spfile=tempspice,use_model=False)
lib.lib(libname=libname,sram=s,sp_file=tempspice,use_model=False)
# let's diff the result with a golden model
golden = "{0}/golden/{1}".format(os.path.dirname(os.path.realpath(__file__)),filename)