From 5d1ff604bfae0932b4171f32342bf5e36046be01 Mon Sep 17 00:00:00 2001 From: David Harris Date: Sun, 22 Sep 2024 19:24:47 -0700 Subject: [PATCH 1/2] Increased robustness of reporting errors and warnings with any capitalization --- bin/regression-wally | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/regression-wally b/bin/regression-wally index 6321b6b6c..16a2efbb6 100755 --- a/bin/regression-wally +++ b/bin/regression-wally @@ -325,9 +325,9 @@ def addLockstepTestsByDir(dir, config, sim, fcovMode): def search_log_for_text(text, grepfile): """Search through the given log file for text, returning True if it is found or False if it is not""" - grepwarn = "grep -H Warning: " + grepfile + grepwarn = "grep -i -H Warning: " + grepfile os.system(grepwarn) - greperr = "grep -H Error: " + grepfile + greperr = "grep -i -H Error: " + grepfile os.system(greperr) grepcmd = "grep -a -e '%s' '%s' > /dev/null" % (text, grepfile) # print(" search_log_for_text invoking %s" % grepcmd) From 1924140f527b9a956750ed3168b7c4297be94168 Mon Sep 17 00:00:00 2001 From: David Harris Date: Sun, 22 Sep 2024 19:25:28 -0700 Subject: [PATCH 2/2] Added Zca coverage for RV32GC --- config/rv32gc/coverage.svh | 1 + 1 file changed, 1 insertion(+) diff --git a/config/rv32gc/coverage.svh b/config/rv32gc/coverage.svh index 5600890c3..1322f7196 100644 --- a/config/rv32gc/coverage.svh +++ b/config/rv32gc/coverage.svh @@ -9,3 +9,4 @@ `include "RV32M_coverage.svh" `include "RV32F_coverage.svh" `include "RV32Zicond_coverage.svh" +`include "RV32Zca_coverage.svh"