From 9828b5133870943106f78c734f0763829500e272 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Thu, 2 Jul 2020 22:12:28 +0200 Subject: testsuite/synth: add tests for previous commits. --- testsuite/synth/issue1387/repro2.vhdl | 30 ++++++++++++++++++++++++++++++ testsuite/synth/issue1387/testsuite.sh | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 testsuite/synth/issue1387/repro2.vhdl (limited to 'testsuite') diff --git a/testsuite/synth/issue1387/repro2.vhdl b/testsuite/synth/issue1387/repro2.vhdl new file mode 100644 index 000000000..3d1e33a8c --- /dev/null +++ b/testsuite/synth/issue1387/repro2.vhdl @@ -0,0 +1,30 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity repro2sub is + port (a,b : std_logic; + c : out std_logic; + p : inout std_logic); +end; + +architecture behav of repro2sub is +begin + c <= a xor b; +end behav; + +library ieee; +use ieee.std_logic_1164.all; + +entity repro2 is + port (a,b : std_logic; + c : out std_logic; + p : inout std_logic); +end; + +architecture behav of repro2 is + signal c1, c2 : std_logic; +begin + i1: entity work.repro2sub port map (a, b, c1, p); + i2: entity work.repro2sub port map (a, b, c2, p); + c <= c2 xor c1; +end behav; diff --git a/testsuite/synth/issue1387/testsuite.sh b/testsuite/synth/issue1387/testsuite.sh index c7cde0ee3..9174dc920 100755 --- a/testsuite/synth/issue1387/testsuite.sh +++ b/testsuite/synth/issue1387/testsuite.sh @@ -4,4 +4,6 @@ synth_failure repro1.vhdl -e +synth_analyze repro2 + echo "Test successful" -- cgit v1.2.3