From 10be2d08b5eac5e532e14366f5d143bb479337ba Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 10 Jun 2020 10:23:05 -0700 Subject: [PATCH] Full path to skip tests file --- compiler/tests/regress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/regress.py b/compiler/tests/regress.py index e13d250a..3fd5d6eb 100755 --- a/compiler/tests/regress.py +++ b/compiler/tests/regress.py @@ -25,7 +25,7 @@ files = os.listdir(sys.path[0]) # load a file with all tests to skip in a given technology # since tech_name is dynamically loaded, we can't use @skip directives try: - skip_file_name = "skip_tests_{}.txt".format(OPTS.tech_name) + skip_file_name = "{0}/tests/skip_tests_{1}.txt".format(os.getenv("OPENRAM_HOME"), OPTS.tech_name) skip_file = open(skip_file_name, "r") skip_tests = skip_file.read().splitlines() for st in skip_tests: