Commit eab2b9bc authored by Tristan Gingold's avatar Tristan Gingold

testsuite: add a test about circular dependency

parent 0c7e5539
action = "simulation"
sim_tool="modelsim"
sim_path="fake_bin"
top_module = "top"
files = [ "top.vhdl", "sub.vhdl"]
entity sub is
port (s: bit);
end sub;
architecture rtl of sub is
begin
inst: entity work.top
port map(s => s);
end rtl;
entity top is
port (s : bit);
end top;
architecture rtl of top is
begin
inst: entity work.sub
port map(s => s);
end rtl;
......@@ -96,6 +96,9 @@ def test_list_mods_none():
def test_list_files():
run(['list-files'], path="001ise")
def test_circular_dep_096():
run(['list-files'], path="096circular_dep")
def test_noact():
with Config(path="005noact") as _:
hdlmake.main.hdlmake(['manifest-help'])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment