diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-09-25 20:49:17 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-09-25 20:49:17 +0200 |
commit | 6af16f78aa9085e937a31167d3df288cc06671ea (patch) | |
tree | 72ec9704c030394e8f69086fa63844339130c7a2 /testsuite/synth/string01/tb_string01.vhdl | |
parent | ecd791d210198c82a88ee238d43ca02b2a36a1c1 (diff) | |
download | ghdl-6af16f78aa9085e937a31167d3df288cc06671ea.tar.gz ghdl-6af16f78aa9085e937a31167d3df288cc06671ea.tar.bz2 ghdl-6af16f78aa9085e937a31167d3df288cc06671ea.zip |
testsuite/synth: add a test for string comparaison.
Diffstat (limited to 'testsuite/synth/string01/tb_string01.vhdl')
-rw-r--r-- | testsuite/synth/string01/tb_string01.vhdl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/synth/string01/tb_string01.vhdl b/testsuite/synth/string01/tb_string01.vhdl new file mode 100644 index 000000000..e1b8d5ab9 --- /dev/null +++ b/testsuite/synth/string01/tb_string01.vhdl @@ -0,0 +1,20 @@ +entity tb_string01 is +end tb_string01; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_string01 is + signal a : std_logic; +begin + dut: entity work.string01 + port map (a); + + process + begin + wait for 1 ns; + assert a = '1' severity failure; + + wait; + end process; +end behav; |