From b2b7e1fa4d114b7766b9f39d37efa8501d5235f0 Mon Sep 17 00:00:00 2001 From: Bugra Onal Date: Wed, 19 Apr 2023 18:51:34 -0700 Subject: [PATCH] fixed the test name --- compiler/tests/30_memchar_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/tests/30_memchar_test.py b/compiler/tests/30_memchar_test.py index b9a41fd7..748abecf 100755 --- a/compiler/tests/30_memchar_test.py +++ b/compiler/tests/30_memchar_test.py @@ -21,9 +21,9 @@ class sram_char_test(openram_test): def runTest(self): global OPTS - out_file = "testsram" + out_file = "sram_2_16_1_{0}".format(OPTS.tech_name) out_path = "{0}/testsram_{1}_{2}_{3}".format(OPTS.openram_temp, OPTS.tech_name, getpass.getuser(), os.getpid()) - OPTS.output_name = "sram_2_16_1_{0}".format(OPTS.tech_name) + OPTS.output_name = out_file OPTS.output_path = out_path OPENRAM_HOME = os.path.abspath(os.environ.get("OPENRAM_HOME"))