diff options
author | Tristan Gingold | 2014-01-16 03:28:06 +0100 |
---|---|---|
committer | Tristan Gingold | 2014-01-16 03:28:06 +0100 |
commit | 66da4588b0ba9e1d510bc11c648c990e54306deb (patch) | |
tree | 0233fc1df2ec0e63130f00257cfeec044a99a914 /testsuite/gna/bug21487/repro.vhdl | |
parent | 5c7e4f5598ff7e2e3be0c2de8d2e4d4414b87f63 (diff) | |
download | ghdl-66da4588b0ba9e1d510bc11c648c990e54306deb.tar.gz ghdl-66da4588b0ba9e1d510bc11c648c990e54306deb.tar.bz2 ghdl-66da4588b0ba9e1d510bc11c648c990e54306deb.zip |
Fix bug21487: call resolution function at init if there is at least 1 source.
Diffstat (limited to 'testsuite/gna/bug21487/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug21487/repro.vhdl | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testsuite/gna/bug21487/repro.vhdl b/testsuite/gna/bug21487/repro.vhdl new file mode 100644 index 0000000..0da0606 --- /dev/null +++ b/testsuite/gna/bug21487/repro.vhdl @@ -0,0 +1,37 @@ +entity top is +end top; + +use std.textio.all; + +architecture ARCH of TOP is + + type int_vector is array (integer range<>) of integer; + function driver_counter( values : int_vector ) return integer is + variable result : integer := 1; + variable l: line; + begin + for index in values'range loop + if values(index) /= 0 then + result := result + values (index); + write (l, integer'image(values(index)) & ","); + end if; + end loop; + report l.all & " count resolved => " & integer'image(result); + return result; + end function; + + signal S1: driver_counter integer := 6; + +begin + s1 <= 1 after 1 ns; + + check: process + begin + assert s1 = 7 report "resolution function not called at init" + severity failure; + wait for 1 ns; + assert s1 = 2 report "resolution function not called at 1 ns" + severity failure; + wait; + end process; +end architecture; |