Added flag for VVP exit code
This commit is contained in:
parent
d90329678a
commit
81b9c5b266
|
@ -853,7 +853,7 @@ def run_netlists_verification():
|
||||||
command += [tb_top_autochecked]
|
command += [tb_top_autochecked]
|
||||||
run_command("iverilog_verification", "iverilog_output.txt", command)
|
run_command("iverilog_verification", "iverilog_output.txt", command)
|
||||||
|
|
||||||
vvp_command = ["vvp", compiled_file]
|
vvp_command = ["vvp", "-Ns", compiled_file]
|
||||||
output = run_command("vvp_verification", "vvp_sim_output.txt", vvp_command)
|
output = run_command("vvp_verification", "vvp_sim_output.txt", vvp_command)
|
||||||
if "Succeed" in output:
|
if "Succeed" in output:
|
||||||
logger.info("VVP Simulation Successful")
|
logger.info("VVP Simulation Successful")
|
||||||
|
|
Loading…
Reference in New Issue