blob: d2af7d4a87c37565aeec68c363dfb071c5ee556b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
entity repro2_tb is
end entity repro2_tb;
architecture sim of repro2_tb is
type Test_Record_t is record
test : bit_vector(8 downto 0);
expected : bit_vector(8 downto 0);
end record;
type SLV_vector is array (natural range <>) of bit_vector;
-- Want to create an array of test values without explicitely stating the size
-- The following line breaks GHDL, if I replace "open" with "0 to 1" everything works as expected.
constant TEST_VALUES : SLV_vector(open)(7 downto 0) := (
x"AD",
x"12"
);
constant TEST_VEC : Test_Record_t := (
test => "0" & TEST_VALUES(0), -- The concatenation is somehow necessary to reproduce the issue
expected => "0" & TEST_VALUES(0)
);
begin
test_runner : process
begin
assert TEST_VEC.test = TEST_VEC.expected report "Should be equal" severity failure;
wait;
end process test_runner;
end architecture sim;
|