From 3dfc039f6f287e3e014dca80abcac25c73d40829 Mon Sep 17 00:00:00 2001 From: Bob Vanhoof Date: Tue, 9 Feb 2021 09:32:35 +0100 Subject: [PATCH] add technology option passtrough in test 30 --- compiler/tests/30_openram_back_end_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler/tests/30_openram_back_end_test.py b/compiler/tests/30_openram_back_end_test.py index f88f5670..3bda98f1 100755 --- a/compiler/tests/30_openram_back_end_test.py +++ b/compiler/tests/30_openram_back_end_test.py @@ -46,6 +46,9 @@ class openram_back_end_test(openram_test): if OPTS.spice_name: options += " -s {}".format(OPTS.spice_name) + if OPTS.tech_name: + options += " -t {}".format(OPTS.tech_name) + # Always perform code coverage if OPTS.coverage == 0: debug.warning("Failed to find coverage installation. This can be installed with pip3 install coverage")