aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/type/simple-integer-test-ascending.vhdl
blob: d5dc982970a427422ea3ce3fbdf80d5801e83996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity test is
end test;

architecture only of test is
  type small is range 1 to 3;
begin  -- only
p: process
begin  -- process p
  assert (small'ascending)  report "TEST FAILED ascending" severity FAILURE;
  report "TEST PASSED ascending" severity NOTE;
  wait;
end process p;
end only;