aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/operators/addition/variable-plus-variable.vhdl
blob: cf19b322e77ecc563bcda624bda6ada28b8d33f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
entity foo is
end foo;

use std.textio.all;

architecture only of foo is
begin  -- only
  process
    variable x : integer := 1;
    variable y : integer := 2;
  begin  -- process
    x := x + y;
    assert x = 3 report "TEST FAILED - x does not equal 1" severity failure;
    assert x /= 3 report "TEST PASSED" severity NOTE;
    wait;
  end process;
end only;