Added verbose option in VVP output

This commit is contained in:
Ganesh Gore 2019-09-17 22:09:37 -06:00
parent 678e3181ba
commit 169732ccc1
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ def run_netlists_verification():
command += [tb_top_autochecked]
run_command("iverilog_verification", "iverilog_output.txt", command)
vvp_command = ["vvp", "-Ns", compiled_file]
vvp_command = ["vvp", "-Nvs", compiled_file]
output = run_command("vvp_verification", "vvp_sim_output.txt", vvp_command)
if "Succeed" in output:
logger.info("VVP Simulation Successful")