aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1914/tb_delayline-orig.vhdl
blob: 5526f2277e5e47bbc96eca35b25508887d12972c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
library IEEE;
use IEEE.std_logic_1164.all;

library vunit_lib;
context vunit_lib.vunit_context;

entity tb_delayline is
    generic (
       delay : natural := 10;
       runner_cfg : string
    );
end entity;

architecture rtl of tb_delayline is
    signal clk : std_logic := '0';
    signal i, o : std_logic_vector(7 downto 0);
begin

    -- Runner setup and timeout time
    test_runner_setup(runner, runner_cfg);
    test_runner_watchdog(runner, 10 ms);
    
    -- 100 Mhz clock
    clk <= not clk after 5 ns;

    -- Test Start
    process
    begin
        while test_suite loop     
            if run("test") then
                check_equal(1, 1, "yay");
            end if;
        end loop;
        test_runner_cleanup(runner);
        wait;
    end process;


    -- Device Under Test 
    c0: entity work.delayline(rtl)
        generic map (
            delay => delay
        )
        port map (
            clk => clk,
            i => i, 
            o => o
        );
end architecture;