diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-08-05 19:03:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-08-05 19:03:25 +0200 |
commit | a0d2fd3cab9360d58cf24474f85c73ca3fd31bdc (patch) | |
tree | d3ab480da8b4c761188a799928fb6c3f55dc2ada /testsuite/gna/issue852 | |
parent | b2db06c1dcf66cd0751974551c61f96aab30c758 (diff) | |
download | ghdl-a0d2fd3cab9360d58cf24474f85c73ca3fd31bdc.tar.gz ghdl-a0d2fd3cab9360d58cf24474f85c73ca3fd31bdc.tar.bz2 ghdl-a0d2fd3cab9360d58cf24474f85c73ca3fd31bdc.zip |
testsuite/gna: improve testing.
Diffstat (limited to 'testsuite/gna/issue852')
-rw-r--r-- | testsuite/gna/issue852/repro1.vhdl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/gna/issue852/repro1.vhdl b/testsuite/gna/issue852/repro1.vhdl index 32aacee45..8a883f3fa 100644 --- a/testsuite/gna/issue852/repro1.vhdl +++ b/testsuite/gna/issue852/repro1.vhdl @@ -20,4 +20,7 @@ architecture tb of repro1 is signal arr_fifo_o : fifo_array_o_t(0 to NB_CHAN_G - 1) (tx_dat(W_DAT_G - 1 downto 0)); begin + arr_fifo_o (0).tx_dat(2) <= '1' after 1 ns, '0' after 2 ns; + + arr_fifo_o (1).tx_dat(3) <= '1' after 200 ps; end tb; |