aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1623/tb.vhd
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-01-29 20:35:37 +0100
committerTristan Gingold <tgingold@free.fr>2021-01-29 20:35:37 +0100
commitdd804ce80852aa583308b02330dd93a94d5fc423 (patch)
tree42a5fc4d533c9ba12b170dc6274a8dd6673586a4 /testsuite/gna/issue1623/tb.vhd
parent45dc90330d619d6445d178483a36fef7673b51fe (diff)
downloadghdl-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.vhd18
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;