From 32fee63a7b9d7fd5b86c1efc7280441e7d0dbf1f Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Fri, 13 Sep 2019 07:28:55 +0200 Subject: testsuite/synth: add more tests in func01. --- testsuite/synth/func01/tb_func05.vhdl | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testsuite/synth/func01/tb_func05.vhdl (limited to 'testsuite/synth/func01/tb_func05.vhdl') diff --git a/testsuite/synth/func01/tb_func05.vhdl b/testsuite/synth/func01/tb_func05.vhdl new file mode 100644 index 000000000..8f2e11704 --- /dev/null +++ b/testsuite/synth/func01/tb_func05.vhdl @@ -0,0 +1,26 @@ +entity tb_func05 is +end tb_func05; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_func05 is + signal r : std_logic_vector(15 downto 0); + signal s : natural; +begin + dut: entity work.func05 + port map (s, r); + + process + begin + s <= 2; + wait for 1 ns; + assert r = x"1234" severity failure; + + s <= 3; + wait for 1 ns; + assert r = x"0000" severity failure; + + wait; + end process; +end behav; -- cgit v1.2.3