aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-01-05 19:25:49 +0100
committerTristan Gingold <tgingold@free.fr>2022-01-05 19:25:49 +0100
commitfb5e1b9ba9c6c1e7ae8c335adcdca03903c78567 (patch)
tree44920591d22a2bd40f00f7d2bdf4cbea8b3e3679 /testsuite/synth
parent33eb34d7ca038b8ab0b2c116e4a5453bf1bde9f3 (diff)
downloadghdl-fb5e1b9ba9c6c1e7ae8c335adcdca03903c78567.tar.gz
ghdl-fb5e1b9ba9c6c1e7ae8c335adcdca03903c78567.tar.bz2
ghdl-fb5e1b9ba9c6c1e7ae8c335adcdca03903c78567.zip
testsuite/synth: add a test for #1942
Diffstat (limited to 'testsuite/synth')
-rw-r--r--testsuite/synth/issue1942/ent.vhdl13
-rwxr-xr-xtestsuite/synth/issue1942/testsuite.sh8
2 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/synth/issue1942/ent.vhdl b/testsuite/synth/issue1942/ent.vhdl
new file mode 100644
index 000000000..e6c7ada0a
--- /dev/null
+++ b/testsuite/synth/issue1942/ent.vhdl
@@ -0,0 +1,13 @@
+package gen_pkg is
+ generic (N : integer);
+end gen_pkg;
+
+entity test is
+end entity test;
+
+architecture simple of test is
+ package pkg is new work.gen_pkg generic map (N => 1);
+
+ use pkg.all;
+begin
+end architecture simple;
diff --git a/testsuite/synth/issue1942/testsuite.sh b/testsuite/synth/issue1942/testsuite.sh
new file mode 100755
index 000000000..0540e945a
--- /dev/null
+++ b/testsuite/synth/issue1942/testsuite.sh
@@ -0,0 +1,8 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+GHDL_STD_FLAGS=--std=08
+synth_only ent
+
+echo "Test successful"