mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-24 13:57:07 -04:00
Merge branch 'main' of https://github.com/openhwgroup/cvw into fcov_lockstep
This commit is contained in:
commit
7901b50680
2 changed files with 8 additions and 5 deletions
2
Makefile
2
Makefile
|
@ -8,7 +8,7 @@ SIM = ${WALLY}/sim
|
|||
|
||||
.PHONY: all riscof testfloat combined_IF_vectors zsbl benchmarks coremark embench coverage cvw-arch-verif clean
|
||||
|
||||
all: riscof testfloat combined_IF_vectors zsbl coverage cvw-arch-verif # benchmarks
|
||||
all: riscof testfloat combined_IF_vectors zsbl coverage # cvw-arch-verif benchmarks
|
||||
|
||||
# riscof builds the riscv-arch-test and wally-riscv-arch-test suites
|
||||
riscof:
|
||||
|
|
|
@ -318,16 +318,19 @@ def addTestsByDir(testDir, config, sim, coverStr, configs, lockstepMode=0, breke
|
|||
sim_logdir = f"{regressionDir}/{sim}/logs/"
|
||||
cmdPrefix = f"wsim --sim {sim} {coverStr} {'--lockstep' if lockstepMode else ''} {config}"
|
||||
# fcov/ccov only runs on WALLY-COV-ALL.elf files; other lockstep runs on all files
|
||||
fileEnd = "ALL.elf" if "cvw-arch-verif/tests" in testDir and "priv" not in testDir and (coverStr == "--fcov" or coverStr == "--ccov") else ".elf"
|
||||
if lockstepMode or coverStr == "--fcov":
|
||||
gs = "** Note: $finish"
|
||||
fileStart = "WALLY-COV-ALL" if "cvw-arch-verif/tests" in testDir and "priv" not in testDir else ""
|
||||
fileEnd = ".elf"
|
||||
if lockstepMode:
|
||||
gs = "Mismatches : 0"
|
||||
elif brekerMode:
|
||||
gs="# trek: info: summary: Test PASSED"
|
||||
elif coverStr == "--fcov":
|
||||
gs = "Functional coverage test complete."
|
||||
else:
|
||||
gs = "Single Elf file tests are not signatured verified."
|
||||
for dirpath, _, filenames in os.walk(os.path.abspath(testDir)):
|
||||
for file in filenames:
|
||||
if file.endswith(fileEnd):
|
||||
if file.endswith(fileEnd) and file.startswith(fileStart):
|
||||
fullfile = os.path.join(dirpath, file)
|
||||
fields = fullfile.rsplit('/', 3)
|
||||
if fields[2] == "ref":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue