From 99e5b295fb07880ebd2e50c6bf74c872a134f96f Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Sat, 16 Nov 2024 21:08:03 -0800 Subject: [PATCH] Update regression-wally fcov to work with new Makefile --- bin/regression-wally | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/regression-wally b/bin/regression-wally index cc0588bf6..c5b9c8f33 100755 --- a/bin/regression-wally +++ b/bin/regression-wally @@ -552,7 +552,7 @@ def main(): if args.ccov: os.system('make QuestaCodeCoverage') if args.fcov: - os.system('make -f '+WALLY+'/addins/cvw-arch-verif/Makefile merge') + os.system('make -C '+WALLY+'/addins/cvw-arch-verif merge') # Count the number of failures if num_fail: print(f"{bcolors.FAIL}Regression failed with %s failed configurations{bcolors.ENDC}" % num_fail)