blob: 0d3c3a44c1d01142d1338abdad83d7ab01a86541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
entity foo is
end foo;
use std.textio.all;
architecture only of foo is
begin -- only
process
variable x : integer := 0;
begin -- process
x := 1 + 2;
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;
|