diff options
Diffstat (limited to 'testsuite/synth/oper01/tb_snum03.vhdl')
-rw-r--r-- | testsuite/synth/oper01/tb_snum03.vhdl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/synth/oper01/tb_snum03.vhdl b/testsuite/synth/oper01/tb_snum03.vhdl new file mode 100644 index 000000000..13b090d67 --- /dev/null +++ b/testsuite/synth/oper01/tb_snum03.vhdl @@ -0,0 +1,20 @@ +entity tb_snum03 is +end tb_snum03; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_snum03 is + signal r : boolean; +begin + cmp03_1: entity work.snum03 + port map (r); + + process + begin + wait for 1 ns; + assert r severity failure; + + wait; + end process; +end behav; |