aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/synth87/tb_repro01.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-02-29 11:16:01 +0100
committerTristan Gingold <tgingold@free.fr>2020-02-29 11:16:01 +0100
commit3d2b4e54964242203e77cd0abfdc9c45c4cc3132 (patch)
tree015a8c6bc2002cc823fb791b03d330471edc5f67 /testsuite/synth/synth87/tb_repro01.vhdl
parent19b544a0b3a1e19dcba07a776c90d176d7dd8f6f (diff)
downloadghdl-3d2b4e54964242203e77cd0abfdc9c45c4cc3132.tar.gz
ghdl-3d2b4e54964242203e77cd0abfdc9c45c4cc3132.tar.bz2
ghdl-3d2b4e54964242203e77cd0abfdc9c45c4cc3132.zip
testsuite/synth: add a reproducer for tgingold/ghdlsynth-beta#87
Diffstat (limited to 'testsuite/synth/synth87/tb_repro01.vhdl')
-rw-r--r--testsuite/synth/synth87/tb_repro01.vhdl31
1 files changed, 31 insertions, 0 deletions
diff --git a/testsuite/synth/synth87/tb_repro01.vhdl b/testsuite/synth/synth87/tb_repro01.vhdl
new file mode 100644
index 000000000..e12ecbaa2
--- /dev/null
+++ b/testsuite/synth/synth87/tb_repro01.vhdl
@@ -0,0 +1,31 @@
+entity tb_repro01 is
+end tb_repro01;
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+architecture behav of tb_repro01 is
+ signal a : std_logic;
+ signal b : std_logic;
+ signal c : std_logic;
+ signal z : std_logic;
+begin
+ dut: entity work.repro01
+ port map (a, b, c, z);
+
+ process
+ constant av : std_logic_vector := b"1101";
+ constant bv : std_logic_vector := b"0111";
+ constant cv : std_logic_vector := b"0011";
+ constant zv : std_logic_vector := b"0111";
+ begin
+ for i in av'range loop
+ a <= av (i);
+ b <= bv (i);
+ c <= cv (i);
+ wait for 1 ns;
+ assert z = zv(i) severity failure;
+ end loop;
+ wait;
+ end process;
+end behav;