aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug033/simple.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug033/simple.vhdl')
-rw-r--r--testsuite/gna/bug033/simple.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/bug033/simple.vhdl b/testsuite/gna/bug033/simple.vhdl
new file mode 100644
index 000000000..8434da6f5
--- /dev/null
+++ b/testsuite/gna/bug033/simple.vhdl
@@ -0,0 +1,12 @@
+entity simple is
+end;
+
+architecture behav of simple is
+begin
+ process
+ begin
+ assert false report "Test is running" severity note;
+ wait; -- Indefinite
+ end process;
+end behav;
+