From 604f9d3a4551fc22448e64b25a70669de508af54 Mon Sep 17 00:00:00 2001 From: David Harris Date: Thu, 4 Jul 2024 12:31:00 -0700 Subject: [PATCH] Fixed imperas.ic prefix for vcs --- bin/wsim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/wsim b/bin/wsim index b5957ae67..169f76a7a 100755 --- a/bin/wsim +++ b/bin/wsim @@ -118,6 +118,6 @@ elif (args.sim == "vcs"): vcsargs = " --args " + args.args if (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) os.system(cmd)