aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/statements/for-loops/enumeration-for-loop-constrained.vhdl
blob: 647642e3b5f777c477ffecb64dbb3c38bab232e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
entity test is
end test;

architecture only of test is
begin  -- only
p: process
  type color is ( red, blue, green );
  variable x : color;
begin  -- process p
  for i in red to blue loop
    x := i;
  end loop;  -- i
  assert x = blue report "TEST FAILED x was " & color'image(x) severity ERROR;
  report "TEST PASSED" severity NOTE;
  wait;
end process p;
end only;