aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket77/bug3.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-05-21 07:01:07 +0200
committerTristan Gingold <tgingold@free.fr>2015-05-21 07:01:07 +0200
commit4f86c7d4b92d4821b11396c4ff7c9fa5b818c6a7 (patch)
tree9245a0490d1c7e15251233ea0d37e1421de8e7b1 /testsuite/gna/ticket77/bug3.vhdl
parent3826656eaff634b0349b610f274203b3026d3f87 (diff)
downloadghdl-4f86c7d4b92d4821b11396c4ff7c9fa5b818c6a7.tar.gz
ghdl-4f86c7d4b92d4821b11396c4ff7c9fa5b818c6a7.tar.bz2
ghdl-4f86c7d4b92d4821b11396c4ff7c9fa5b818c6a7.zip
Add testcases for ticket 77
Diffstat (limited to 'testsuite/gna/ticket77/bug3.vhdl')
-rw-r--r--testsuite/gna/ticket77/bug3.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/ticket77/bug3.vhdl b/testsuite/gna/ticket77/bug3.vhdl
new file mode 100644
index 000000000..429ccd35f
--- /dev/null
+++ b/testsuite/gna/ticket77/bug3.vhdl
@@ -0,0 +1,12 @@
+entity ent3 is
+end entity;
+
+architecture a of ent3 is
+begin
+ main : process
+ begin
+-- wait for 0 ns; -- Comment and it exits with code 1
+ std.env.stop(7);
+ wait;
+ end process;
+end architecture;