From e3c9103b4c6e5bd3d3d8d4a053b7a6c05ff55aeb Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sun, 3 Jan 2016 21:42:32 +0100 Subject: Add test for html output. --- testsuite/gna/bug033/simple08.vhdl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 testsuite/gna/bug033/simple08.vhdl (limited to 'testsuite/gna/bug033/simple08.vhdl') diff --git a/testsuite/gna/bug033/simple08.vhdl b/testsuite/gna/bug033/simple08.vhdl new file mode 100644 index 0000000..1f919e8 --- /dev/null +++ b/testsuite/gna/bug033/simple08.vhdl @@ -0,0 +1,13 @@ +/* Using vhdl 2008 comments. */ +entity simple08 is +end; + +architecture behav of simple08 is +begin + process + begin + assert false report "Test is running" severity note; + wait; -- Indefinite + end process; +end behav; + -- cgit