diff options
-rw-r--r-- | testsuite/gna/issue691/tb.vhdl | 12 | ||||
-rwxr-xr-x | testsuite/gna/issue691/testsuite.sh | 9 |
2 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/gna/issue691/tb.vhdl b/testsuite/gna/issue691/tb.vhdl new file mode 100644 index 000000000..5cf0ed33e --- /dev/null +++ b/testsuite/gna/issue691/tb.vhdl @@ -0,0 +1,12 @@ +library ieee, std; +use ieee.std_logic_1164.all; + +entity e1 is port(number: in std_logic_vector(15 downto 0)); end e1; + +library ieee; +use ieee.std_logic_1164.all; + +entity tb is end entity; +architecture arch of tb is begin + DS: entity work.e1 port map (number => std_logic_vector(1, 15)); +end arch; diff --git a/testsuite/gna/issue691/testsuite.sh b/testsuite/gna/issue691/testsuite.sh new file mode 100755 index 000000000..8a9a6eed3 --- /dev/null +++ b/testsuite/gna/issue691/testsuite.sh @@ -0,0 +1,9 @@ +#! /bin/sh + +. ../../testenv.sh + +analyze_failure tb.vhdl + +clean + +echo "Test successful" |