aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/case01/tb_case04.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-05-09 11:02:23 +0200
committerTristan Gingold <tgingold@free.fr>2020-05-09 11:22:01 +0200
commit1a65ac6bbbaf6cdaf1ea93c0c46f2e97e12e9dcc (patch)
tree13d03fcaf314a19649f4ed1c750d8f01678a027e /testsuite/synth/case01/tb_case04.vhdl
parentb13b9e9fa26121a68d74589ef35ea5ed45316cd9 (diff)
downloadghdl-1a65ac6bbbaf6cdaf1ea93c0c46f2e97e12e9dcc.tar.gz
ghdl-1a65ac6bbbaf6cdaf1ea93c0c46f2e97e12e9dcc.tar.bz2
ghdl-1a65ac6bbbaf6cdaf1ea93c0c46f2e97e12e9dcc.zip
testsuite/synth: add case tests for corner case.
Diffstat (limited to 'testsuite/synth/case01/tb_case04.vhdl')
-rw-r--r--testsuite/synth/case01/tb_case04.vhdl24
1 files changed, 24 insertions, 0 deletions
diff --git a/testsuite/synth/case01/tb_case04.vhdl b/testsuite/synth/case01/tb_case04.vhdl
new file mode 100644
index 000000000..ea3b6b5e6
--- /dev/null
+++ b/testsuite/synth/case01/tb_case04.vhdl
@@ -0,0 +1,24 @@
+entity tb_case04 is
+end tb_case04;
+
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+
+architecture behav of tb_case04 is
+ signal s : std_logic_vector (4 downto 0);
+ signal o : std_logic;
+begin
+ dut: entity work.case04
+ port map (s, o);
+
+ process
+ begin
+ s <= "00010";
+ wait for 1 ns;
+
+ assert o = '1' severity failure;
+
+ wait;
+ end process;
+end behav;