mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-22 21:08:08 -04:00
Merge pull request #959 from davidharrishmc/dev
Improved robustness of reporting errors from regression; add RV32Zca coverage
This commit is contained in:
commit
ba6481305f
2 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -9,3 +9,4 @@
|
|||
`include "RV32M_coverage.svh"
|
||||
`include "RV32F_coverage.svh"
|
||||
`include "RV32Zicond_coverage.svh"
|
||||
`include "RV32Zca_coverage.svh"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue