summaryrefslogtreecommitdiff
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/entities/pass-integer-through-inout-port.vhdl
blob: 294dddae0dacc794669f70f629a6464a2b64ce77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
entity test_output is
  port (
    output : inout integer := 10
    );
end test_output;

architecture only of test_output is
begin  -- test_output
  test: process
  begin  -- process test
    assert output = 10 report "test failed" severity error;
    assert output /= 10 report "test passed" severity note;
    wait;
  end process test;
end only;