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/simple.vhdl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 testsuite/gna/bug033/simple.vhdl (limited to 'testsuite/gna/bug033/simple.vhdl') diff --git a/testsuite/gna/bug033/simple.vhdl b/testsuite/gna/bug033/simple.vhdl new file mode 100644 index 0000000..8434da6 --- /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; + -- cgit