blob: 372f3156b8763d0ea742853c4388a58cc3949a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
entity test is
end test;
architecture only of test is
begin -- only
only: process
variable string_variable : string(1 to 5) := "Hello";
alias string_alias : string(1 to 5) is string_variable;
begin -- process
assert string_alias = "Hello" report "TEST FAILED" severity FAILURE;
report "TEST PASSED";
wait;
end process;
end only;
|