From c2b6b4fe03c879753c76f5bee9f0ffe3b0e73f52 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Fri, 12 Nov 2021 18:51:46 +0100 Subject: testsuite/synth: adjust test after previous commit --- testsuite/synth/issue1164/comp.vhdl | 8 ++++++++ testsuite/synth/issue1164/testsuite.sh | 3 ++- testsuite/synth/issue958/c.vhdl | 9 +++++++++ testsuite/synth/issue958/testsuite.sh | 2 +- 4 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 testsuite/synth/issue1164/comp.vhdl create mode 100644 testsuite/synth/issue958/c.vhdl (limited to 'testsuite/synth') diff --git a/testsuite/synth/issue1164/comp.vhdl b/testsuite/synth/issue1164/comp.vhdl new file mode 100644 index 000000000..676b960a2 --- /dev/null +++ b/testsuite/synth/issue1164/comp.vhdl @@ -0,0 +1,8 @@ +library IEEE; +use IEEE.std_logic_1164.all; + +entity comp is + port ( + data : in std_logic_vector + ); +end comp; diff --git a/testsuite/synth/issue1164/testsuite.sh b/testsuite/synth/issue1164/testsuite.sh index 2be3b2f1a..bf7cf9409 100755 --- a/testsuite/synth/issue1164/testsuite.sh +++ b/testsuite/synth/issue1164/testsuite.sh @@ -2,7 +2,8 @@ . ../../testenv.sh -synth_analyze bug +synth bug.vhdl -e > syn_bug.vhdl +analyze comp.vhdl syn_bug.vhdl clean diff --git a/testsuite/synth/issue958/c.vhdl b/testsuite/synth/issue958/c.vhdl new file mode 100644 index 000000000..354a7d1c7 --- /dev/null +++ b/testsuite/synth/issue958/c.vhdl @@ -0,0 +1,9 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity c is + port ( + p : in std_logic_vector(7 downto 0) + ); +end c; + diff --git a/testsuite/synth/issue958/testsuite.sh b/testsuite/synth/issue958/testsuite.sh index 02e38f330..d5fc69a24 100755 --- a/testsuite/synth/issue958/testsuite.sh +++ b/testsuite/synth/issue958/testsuite.sh @@ -4,7 +4,7 @@ for f in ent ent1; do synth $f.vhdl -e $f > syn_$f.vhdl - analyze syn_$f.vhdl + analyze c.vhdl syn_$f.vhdl clean done -- cgit v1.2.3