From bd4aff0f670351c0652cf24e9b04361dc0e3a01c Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Wed, 18 Dec 2013 05:53:22 +0100 Subject: Add initial testsuite, using regression tests from bugs or support reported on gna.org --- testsuite/gna/bug20597/20597.vhd | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testsuite/gna/bug20597/20597.vhd (limited to 'testsuite/gna/bug20597/20597.vhd') diff --git a/testsuite/gna/bug20597/20597.vhd b/testsuite/gna/bug20597/20597.vhd new file mode 100644 index 0000000..3294762 --- /dev/null +++ b/testsuite/gna/bug20597/20597.vhd @@ -0,0 +1,27 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity e is +end entity e; + +architecture a of e is + +signal operator_for_cmp : std_logic_vector(7 downto 0) := (others => 'X'); + +begin + +process (operator_for_cmp) is +begin + case operator_for_cmp is + when "00000000" => + null; + when "00000001" => + null; + when "00000002" => -- Me being stupid + null; + when "00000003" => --Again + when others => null; + end case; +end process; + +end architecture; -- cgit