aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue69/mytest.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-05-18 20:25:44 +0200
committerTristan Gingold <tgingold@free.fr>2016-05-18 20:25:44 +0200
commit6ccb80e33266753efcb01817d32826e8b8394285 (patch)
tree2299a0dc8fff1e8c54f166d5308e41e6e40b39f4 /testsuite/gna/issue69/mytest.vhdl
parent0841fbb6085f467684f5db64b4efaf02de68e7f9 (diff)
downloadghdl-6ccb80e33266753efcb01817d32826e8b8394285.tar.gz
ghdl-6ccb80e33266753efcb01817d32826e8b8394285.tar.bz2
ghdl-6ccb80e33266753efcb01817d32826e8b8394285.zip
Add testcase for issue69
Diffstat (limited to 'testsuite/gna/issue69/mytest.vhdl')
-rw-r--r--testsuite/gna/issue69/mytest.vhdl14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/issue69/mytest.vhdl b/testsuite/gna/issue69/mytest.vhdl
new file mode 100644
index 000000000..6a53176b3
--- /dev/null
+++ b/testsuite/gna/issue69/mytest.vhdl
@@ -0,0 +1,14 @@
+entity mytest is
+end mytest;
+
+library mylib;
+use mylib.mypkg.all;
+
+architecture behav of mytest is
+begin
+ process
+ begin
+ report msg severity note;
+ wait;
+ end process;
+end behav;