diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-11-29 19:09:13 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-11-29 19:09:13 +0100 |
commit | 75d82a9f92a1845ae933d2599cddf92f938446af (patch) | |
tree | 5a5f9c2c1b3b0a5cb54dee204562aa19d5603050 /testsuite/synth/issue1046/tb_concat01.vhdl | |
parent | 09de5ec9c9e8c66b2690c53b4e89ce81c5d447e5 (diff) | |
download | ghdl-75d82a9f92a1845ae933d2599cddf92f938446af.tar.gz ghdl-75d82a9f92a1845ae933d2599cddf92f938446af.tar.bz2 ghdl-75d82a9f92a1845ae933d2599cddf92f938446af.zip |
testsuite: add case for #1046
Diffstat (limited to 'testsuite/synth/issue1046/tb_concat01.vhdl')
-rw-r--r-- | testsuite/synth/issue1046/tb_concat01.vhdl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/synth/issue1046/tb_concat01.vhdl b/testsuite/synth/issue1046/tb_concat01.vhdl new file mode 100644 index 000000000..1c6f25cc2 --- /dev/null +++ b/testsuite/synth/issue1046/tb_concat01.vhdl @@ -0,0 +1,20 @@ +entity tb_concat01 is +end tb_concat01; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_concat01 is + signal a : std_logic_vector(15 downto 0); +begin + dut: entity work.concat01 + port map (a); + + process + begin + wait for 1 ns; + assert a = x"ab9e" severity failure; + + wait; + end process; +end behav; |