Fix VCS testbench argument

This commit is contained in:
Jordan Carlin 2024-08-11 17:15:26 -07:00
parent cfa3422d61
commit 3edbdf8e86
No known key found for this signature in database

View File

@ -160,6 +160,6 @@ elif (args.sim == "vcs"):
print("VCS params: " + vcsparams)
if (ElfFile != ""):
ElfFile = " --elffile " + ElfFile
cmd = cd + "; " + prefix + " ./run_vcs " + args.config + " " + args.testsuite + " " + args.tb + " " + vcsargs + vcsparams + ElfFile + " " + flags
cmd = cd + "; " + prefix + " ./run_vcs " + args.config + " " + args.testsuite + " " + " --tb " + args.tb + " " + vcsargs + vcsparams + ElfFile + " " + flags
print(cmd)
os.system(cmd)