diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-01-29 20:35:37 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-01-29 20:35:37 +0100 |
commit | dd804ce80852aa583308b02330dd93a94d5fc423 (patch) | |
tree | 42a5fc4d533c9ba12b170dc6274a8dd6673586a4 /testsuite/gna/issue1623/tb.vhd | |
parent | 45dc90330d619d6445d178483a36fef7673b51fe (diff) | |
download | ghdl-dd804ce80852aa583308b02330dd93a94d5fc423.tar.gz ghdl-dd804ce80852aa583308b02330dd93a94d5fc423.tar.bz2 ghdl-dd804ce80852aa583308b02330dd93a94d5fc423.zip |
testsuite/gna: file testcase for #1623
Diffstat (limited to 'testsuite/gna/issue1623/tb.vhd')
-rw-r--r-- | testsuite/gna/issue1623/tb.vhd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/issue1623/tb.vhd b/testsuite/gna/issue1623/tb.vhd new file mode 100644 index 000000000..bed04ddac --- /dev/null +++ b/testsuite/gna/issue1623/tb.vhd @@ -0,0 +1,18 @@ +entity tb is +end entity; + +architecture pass of tb is +begin + process begin + report "Hello wrapping/exitcb [pass]!" severity note; + wait; + end process; +end; + +architecture fail of tb is +begin + process begin + report "Hello wrapping/exitcb [fail]!" severity failure; + wait; + end process; +end; |