From 3edbdf8e86cb286782c8892c6d119125398e69ab Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Sun, 11 Aug 2024 17:15:26 -0700 Subject: [PATCH] Fix VCS testbench argument --- bin/wsim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/wsim b/bin/wsim index e6d72c3b9..b13019e1c 100755 --- a/bin/wsim +++ b/bin/wsim @@ -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)