3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-16 15:15:38 +00:00

Save results, and create summary and report

This commit is contained in:
Miodrag Milanovic 2026-03-13 09:51:15 +01:00
parent ced2521b03
commit b361569abf
3 changed files with 63 additions and 31 deletions

View file

@ -34,37 +34,37 @@ MK_TEST_DIRS += ./verilog
# Tests that don't generate .mk
SH_TEST_DIRS =
SH_TEST_DIRS += ./simple
SH_TEST_DIRS += ./simple_abc9
SH_TEST_DIRS += ./hana
SH_TEST_DIRS += ./asicworld
SH_TEST_DIRS += ./realmath
SH_TEST_DIRS += ./share
SH_TEST_DIRS += ./opt_share
SH_TEST_DIRS += ./fsm
SH_TEST_DIRS += ./memlib
SH_TEST_DIRS += ./bram
SH_TEST_DIRS += ./svinterfaces
SH_TEST_DIRS += ./xprop
SH_TEST_DIRS += ./select
SH_TEST_DIRS += ./peepopt
SH_TEST_DIRS += ./proc
SH_TEST_DIRS += ./blif
SH_TEST_DIRS += ./arch
SH_TEST_DIRS += ./rpc
SH_TEST_DIRS += ./memfile
SH_TEST_DIRS += ./fmt
SH_TEST_DIRS += ./cxxrtl
SH_TEST_DIRS += ./liberty
ifeq ($(ENABLE_FUNCTIONAL_TESTS),1)
SH_TEST_DIRS += ./functional
endif
#SH_TEST_DIRS += ./simple
#SH_TEST_DIRS += ./simple_abc9
#SH_TEST_DIRS += ./hana
#SH_TEST_DIRS += ./asicworld
#SH_TEST_DIRS += ./realmath
#SH_TEST_DIRS += ./share
#SH_TEST_DIRS += ./opt_share
#SH_TEST_DIRS += ./fsm
#SH_TEST_DIRS += ./memlib
#SH_TEST_DIRS += ./bram
#SH_TEST_DIRS += ./svinterfaces
#SH_TEST_DIRS += ./xprop
#SH_TEST_DIRS += ./select
#SH_TEST_DIRS += ./peepopt
#SH_TEST_DIRS += ./proc
#SH_TEST_DIRS += ./blif
#SH_TEST_DIRS += ./arch
#SH_TEST_DIRS += ./rpc
#SH_TEST_DIRS += ./memfile
#SH_TEST_DIRS += ./fmt
#SH_TEST_DIRS += ./cxxrtl
#SH_TEST_DIRS += ./liberty
#ifeq ($(ENABLE_FUNCTIONAL_TESTS),1)
#SH_TEST_DIRS += ./functional
#endif
# Tests that don't generate .mk and need special args
SH_ABC_TEST_DIRS =
SH_ABC_TEST_DIRS += ./memories
SH_ABC_TEST_DIRS += ./aiger
SH_ABC_TEST_DIRS += ./alumacc
#SH_ABC_TEST_DIRS += ./memories
#SH_ABC_TEST_DIRS += ./aiger
#SH_ABC_TEST_DIRS += ./alumacc
all: vanilla-test
@ -104,6 +104,15 @@ ifeq ($(YOSYS_NOVERIFIC),1)
endif
endif
@echo ""
@pass=$$(grep -h PASS **/*.result 2>/dev/null | wc -l); \
fail=$$(grep -h FAIL **/*.result 2>/dev/null | wc -l); \
total=$$((pass + fail)); \
echo "=========================="; \
echo "Tests: $$total"; \
echo "Passed: $$pass"; \
echo "Failed: $$fail"; \
echo "=========================="; \
test $$fail -eq 0
clean:
@rm -rf ./asicworld/*.out ./asicworld/*.log
@ -115,3 +124,14 @@ clean:
@rm -f ./svinterfaces/*.log_stdout ./svinterfaces/*.log_stderr ./svinterfaces/dut_result.txt ./svinterfaces/reference_result.txt ./svinterfaces/a.out ./svinterfaces/*_syn.v ./svinterfaces/*.diff
@rm -f ./tools/cmp_tbdata
@rm -f $(addsuffix /run-test.mk,$(MK_TEST_DIRS))
@find . -name '*.result' -type f -exec rm -f {} +
@find . -mindepth 2 \( -path './sva*' -o -path './unit*' \) -prune -o -name 'Makefile' -type f -exec rm -f {} +
.PHONY: report
report:
@echo "=========================="
@echo "Failing tests:"
@find . -name '*.result' -type f -exec grep -H '^FAIL$$' {} + \
| cut -d: -f1 \
| sed 's|^\./||; s|\.result$$||'
@echo "=========================="