diff --git a/compiler/tests/23_lib_sram_model_corners_test.py b/compiler/tests/23_lib_sram_model_corners_test.py index 6b6a02f5..51fcbca6 100755 --- a/compiler/tests/23_lib_sram_model_corners_test.py +++ b/compiler/tests/23_lib_sram_model_corners_test.py @@ -14,7 +14,8 @@ import globals from globals import OPTS import debug -class model_corners_lib_test(openram_test): +@unittest.skip("SKIPPING 23_lib_sram_model_corners_test") +class lib_model_corners_lib_test(openram_test): def runTest(self): globals.init_openram("config_{0}".format(OPTS.tech_name)) diff --git a/compiler/tests/23_lib_sram_model_test.py b/compiler/tests/23_lib_sram_model_test.py index 8740e2d7..fd75dc25 100755 --- a/compiler/tests/23_lib_sram_model_test.py +++ b/compiler/tests/23_lib_sram_model_test.py @@ -14,7 +14,8 @@ import globals from globals import OPTS import debug -class lib_test(openram_test): +@unittest.skip("SKIPPING 23_lib_sram_model_test") +class lib_sram_model_test(openram_test): def runTest(self): globals.init_openram("config_{0}".format(OPTS.tech_name))