From 3c86f94549577b08dd2f08ba8fd7aa3e65527341 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 8 Feb 2018 15:28:49 -0800 Subject: [PATCH] Change argument name for lib in tests as well. --- compiler/tests/23_lib_sram_model_test.py | 2 +- compiler/tests/23_lib_sram_prune_test.py | 2 +- compiler/tests/23_lib_sram_test.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/tests/23_lib_sram_model_test.py b/compiler/tests/23_lib_sram_model_test.py index 9b6ff73a..5d47c287 100644 --- a/compiler/tests/23_lib_sram_model_test.py +++ b/compiler/tests/23_lib_sram_model_test.py @@ -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) diff --git a/compiler/tests/23_lib_sram_prune_test.py b/compiler/tests/23_lib_sram_prune_test.py index 9c9f6667..668a56e1 100644 --- a/compiler/tests/23_lib_sram_prune_test.py +++ b/compiler/tests/23_lib_sram_prune_test.py @@ -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) diff --git a/compiler/tests/23_lib_sram_test.py b/compiler/tests/23_lib_sram_test.py index c1d2eb6a..722854b3 100644 --- a/compiler/tests/23_lib_sram_test.py +++ b/compiler/tests/23_lib_sram_test.py @@ -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)