aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1623/tb.vhd
diff options
context:
space:
mode:
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;