aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue40/tb_testcase.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-08-27 13:56:32 +0200
committerTristan Gingold <tgingold@free.fr>2019-08-27 13:56:32 +0200
commitcb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d (patch)
tree27e89ccd0ba51cab2cfb8a690c3a607216ee9530 /testsuite/synth/issue40/tb_testcase.vhdl
parent4870e051898d752407da802d4297d1f83bfbe433 (diff)
downloadghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.tar.gz
ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.tar.bz2
ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.zip
testsuite/synth: testcase for conditional signal assignment.
Diffstat (limited to 'testsuite/synth/issue40/tb_testcase.vhdl')
-rw-r--r--testsuite/synth/issue40/tb_testcase.vhdl26
1 files changed, 26 insertions, 0 deletions
diff --git a/testsuite/synth/issue40/tb_testcase.vhdl b/testsuite/synth/issue40/tb_testcase.vhdl
new file mode 100644
index 000000000..3ed89e61c
--- /dev/null
+++ b/testsuite/synth/issue40/tb_testcase.vhdl
@@ -0,0 +1,26 @@
+entity tb_testcase is
+end tb_testcase;
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+architecture behav of tb_testcase is
+ signal di : std_logic;
+ signal do : std_logic;
+begin
+ dut: entity work.testcase
+ port map (data_in => di, data_out => do);
+
+ process
+ begin
+ di <= '1';
+ wait for 1 ns;
+ assert do = '0' severity failure;
+
+ di <= '0';
+ wait for 1 ns;
+ assert do = '1' severity failure;
+
+ wait;
+ end process;
+end behav;