Commit f30f91b2 authored by Tristan Gingold's avatar Tristan Gingold

Add a test for vlog include file not found.

parent 04901db5
action = "simulation"
sim_tool="modelsim"
top_module = "gate"
files = [ "vlog.v" ]
`include "notfount.vh"
module gate;
wire w3;
endmodule
......@@ -367,6 +367,10 @@ def test_err_manifest_key():
def test_svlog_parser():
run_compare(path="052svlog_parser")
def test_err_vlog_include():
with pytest.raises(SystemExit) as _:
run([], path="077err_vlg_include")
def test_dep_level():
run(['list-files'], path="053vlog_dep_level")
run(['list-files', '--delimiter', ','], path="053vlog_dep_level")
......
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