From 1ebebb53f161226362b2dfbe95b0e8f8b5e5aada Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sun, 13 Oct 2019 07:55:42 +0200 Subject: testsuite/synth: Add testcase for previous commit (missing assoc in call). --- testsuite/synth/func02/tb_func01.vhdl | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testsuite/synth/func02/tb_func01.vhdl (limited to 'testsuite/synth/func02/tb_func01.vhdl') diff --git a/testsuite/synth/func02/tb_func01.vhdl b/testsuite/synth/func02/tb_func01.vhdl new file mode 100644 index 000000000..3e9354625 --- /dev/null +++ b/testsuite/synth/func02/tb_func01.vhdl @@ -0,0 +1,29 @@ +entity tb_func01 is +end tb_func01; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_func01 is + signal a, b : std_logic_vector(7 downto 0); +begin + dut: entity work.func01 + port map (a, b); + + process + begin + a <= x"5d"; + wait for 1 ns; + assert b = x"1d" severity failure; + + a <= x"ff"; + wait for 1 ns; + assert b = x"3f" severity failure; + + a <= x"c0"; + wait for 1 ns; + assert b = x"00" severity failure; + + wait; + end process; +end behav; -- cgit v1.2.3