diff options
author | Tristan Gingold <tgingold@free.fr> | 2015-05-21 07:01:07 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2015-05-21 07:01:07 +0200 |
commit | 4f86c7d4b92d4821b11396c4ff7c9fa5b818c6a7 (patch) | |
tree | 9245a0490d1c7e15251233ea0d37e1421de8e7b1 /testsuite/gna/ticket77/bug3.vhdl | |
parent | 3826656eaff634b0349b610f274203b3026d3f87 (diff) | |
download | ghdl-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.vhdl | 12 |
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; |