From 088a75fe30063ac20151ce05eb7842cde789d15d Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Fri, 21 May 2021 19:42:03 +0200 Subject: testenv.sh: allow additional package files for synth_tb. For #1675 --- testsuite/testenv.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'testsuite') diff --git a/testsuite/testenv.sh b/testsuite/testenv.sh index 4c3a3c33a..aa3735fe1 100644 --- a/testsuite/testenv.sh +++ b/testsuite/testenv.sh @@ -166,13 +166,14 @@ synth_analyze() synth_tb() { t=$1 + shift - analyze $t.vhdl tb_$t.vhdl + analyze $* $t.vhdl tb_$t.vhdl elab_simulate tb_$t clean - synth $t.vhdl -e $t > syn_$t.vhdl - analyze syn_$t.vhdl tb_$t.vhdl + synth $* $t.vhdl -e $t > syn_$t.vhdl + analyze $* syn_$t.vhdl tb_$t.vhdl elab_simulate tb_$t --ieee-asserts=disable-at-0 --assert-level=error clean } -- cgit v1.2.3