aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/synth/issue1282/issue.vhdl12
-rwxr-xr-xtestsuite/synth/issue1282/testsuite.sh10
2 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/issue1282/issue.vhdl b/testsuite/synth/issue1282/issue.vhdl
new file mode 100644
index 000000000..48dfaa8cf
--- /dev/null
+++ b/testsuite/synth/issue1282/issue.vhdl
@@ -0,0 +1,12 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity issue is
+ port (foo : in std_logic_vector (3 downto 0);
+ bar : out std_logic_vector (7 downto 0));
+end issue;
+
+architecture beh of issue is
+begin
+ bar <= ('0' & foo, others=>'0');
+end architecture beh;
diff --git a/testsuite/synth/issue1282/testsuite.sh b/testsuite/synth/issue1282/testsuite.sh
new file mode 100755
index 000000000..29460b8df
--- /dev/null
+++ b/testsuite/synth/issue1282/testsuite.sh
@@ -0,0 +1,10 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+GHDL_STD_FLAGS=--std=08
+synth_analyze issue
+
+clean
+
+echo "Test successful"