From d5419f99f66b49cc5f1312b8a978f556d78cfdf3 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 25 Jul 2019 14:46:33 -0700 Subject: [PATCH] Skip model tests for now --- compiler/tests/23_lib_sram_model_corners_test.py | 3 ++- compiler/tests/23_lib_sram_model_test.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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))