diff --git a/bin/iterelf b/bin/iterelf index 2f6441e59..02b53a230 100755 --- a/bin/iterelf +++ b/bin/iterelf @@ -39,7 +39,7 @@ def run_test_case(elf): if (fields[2] == "ref"): shortelf = fields[1] + "_" + fields[3] else: - shorelf = fields[2] + "_" + fields[3] + shortelf = fields[2] + "_" + fields[3] # shortelf = fields[1] + "_" + fields[2] logfile = WALLY + "/sim/" + args.sim + "/logs/" + shortelf + ".log" cmd = "wsim " + args.config + " " + shortelf + " --elf " + elf + " --sim " + args.sim + " --lockstep > " + logfile # add coveerage flags if necessary diff --git a/bin/wsim b/bin/wsim index c10e5073e..b5957ae67 100755 --- a/bin/wsim +++ b/bin/wsim @@ -40,7 +40,7 @@ DirectorMode = 0 WALLY = os.environ.get('WALLY') if(os.path.isfile(args.elf)): - ElfFile = "+ElfFile=" + args.elf + ElfFile = "+ElfFile=" + os.path.abspath(args.elf) # Validate arguments if (args.gui or args.coverage or args.fcov or args.lockstep):