Fixed imperas.ic prefix for vcs

This commit is contained in:
David Harris 2024-07-04 12:31:00 -07:00
parent 873bd61296
commit 604f9d3a45

View File

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