diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-01-08 20:35:54 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-01-09 21:13:52 +0100 |
commit | 2a8b6abb8a06ebda88817c22ecb970eb7898ec04 (patch) | |
tree | f956eb79b154381e2224058577570a722dfc2f5a /testsuite/synth/anon01/tb_anon01.vhdl | |
parent | 37ca7ab57c45a1adb6d8e79f9dbe9fbb9e21d97a (diff) | |
download | ghdl-2a8b6abb8a06ebda88817c22ecb970eb7898ec04.tar.gz ghdl-2a8b6abb8a06ebda88817c22ecb970eb7898ec04.tar.bz2 ghdl-2a8b6abb8a06ebda88817c22ecb970eb7898ec04.zip |
testsuite/synth: add a test for inertial associations.
Diffstat (limited to 'testsuite/synth/anon01/tb_anon01.vhdl')
-rw-r--r-- | testsuite/synth/anon01/tb_anon01.vhdl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/anon01/tb_anon01.vhdl b/testsuite/synth/anon01/tb_anon01.vhdl new file mode 100644 index 000000000..88dc43939 --- /dev/null +++ b/testsuite/synth/anon01/tb_anon01.vhdl @@ -0,0 +1,22 @@ +entity tb_anon01 is +end tb_anon01; + +architecture behav of tb_anon01 is + signal i, o : bit_vector(6 downto 0); +begin + dut: entity work.anon01 + port map (i, o); + + process + begin + i <= b"000_0000"; + wait for 1 ns; + assert o = b"010_0101" severity failure; + + i <= b"111_1111"; + wait for 1 ns; + assert o = b"101_1010" severity failure; + + wait; + end process; +end behav; |