From 057fcd45c357f6933de646a7086a44b190efee6f Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Wed, 13 Apr 2022 20:58:43 +0200 Subject: testsuite/synth: add a test for #2033 --- testsuite/synth/issue2033/cdc_fifo.vhdl | 7 +++++++ testsuite/synth/issue2033/cdc_fifo_rtl_formal.psl | 7 +++++++ testsuite/synth/issue2033/testsuite.sh | 8 ++++++++ 3 files changed, 22 insertions(+) create mode 100644 testsuite/synth/issue2033/cdc_fifo.vhdl create mode 100644 testsuite/synth/issue2033/cdc_fifo_rtl_formal.psl create mode 100755 testsuite/synth/issue2033/testsuite.sh (limited to 'testsuite/synth/issue2033') diff --git a/testsuite/synth/issue2033/cdc_fifo.vhdl b/testsuite/synth/issue2033/cdc_fifo.vhdl new file mode 100644 index 000000000..290d80be4 --- /dev/null +++ b/testsuite/synth/issue2033/cdc_fifo.vhdl @@ -0,0 +1,7 @@ +ENTITY cdc_fifo IS +END ENTITY; + +ARCHITECTURE rtl OF cdc_fifo IS +BEGIN +END ARCHITECTURE; + diff --git a/testsuite/synth/issue2033/cdc_fifo_rtl_formal.psl b/testsuite/synth/issue2033/cdc_fifo_rtl_formal.psl new file mode 100644 index 000000000..e2dfeae5c --- /dev/null +++ b/testsuite/synth/issue2033/cdc_fifo_rtl_formal.psl @@ -0,0 +1,7 @@ + +library ieee; +use ieee.std_logic_1164.all; + +vunit cdc_fifo_rtl_formal (cdc_fifo(rtl)) { + SUBTYPE f_t_ram_word IS std_logic_vector(1 DOWNTO 0); +} diff --git a/testsuite/synth/issue2033/testsuite.sh b/testsuite/synth/issue2033/testsuite.sh new file mode 100755 index 000000000..388377739 --- /dev/null +++ b/testsuite/synth/issue2033/testsuite.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +. ../../testenv.sh + +export GHDL_STD_FLAGS=--std=08 +synth cdc_fifo.vhdl cdc_fifo_rtl_formal.psl -e > syn_cdc_fifo.vhdl + +echo "Test successful" -- cgit v1.2.3