aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2150/e.vhdl
blob: 4f0370bc443220e15fe92f81a22e3882ae458290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
entity e is end;

architecture a of e is
begin

    ------------------------------------------------------------------------
    -- There is no infinite loop when std.env.stop is unconditionally executed
    ------------------------------------------------------------------------
    process
    begin
        std.env.stop;
    end process;

    ------------------------------------------------------------------------
    -- There is no infinite loop when there is an assertion with boolean 
    -- literal false and severity failiure that is unconditioinally executed
    ------------------------------------------------------------------------
    process
    begin
        assert false severity failure;
    end process;

    ------------------------------------------------------------------------
    -- There is no infinite loop when a report statement with severity 
    -- failure is unconditionally executed
    ------------------------------------------------------------------------
    process
    begin
        report "" severity failure;
    end process;
end;