mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
27 lines
576 B
Makefile
27 lines
576 B
Makefile
|
|
DIAG=diag.log
|
|
BTEST=../../aux/btest/btest
|
|
|
|
all: cleanup btest-verbose coverage
|
|
|
|
# Showing all tests.
|
|
btest-verbose:
|
|
@$(BTEST) -j -f $(DIAG)
|
|
|
|
brief: cleanup btest-brief coverage
|
|
|
|
# Brief output showing only failed tests.
|
|
btest-brief:
|
|
@$(BTEST) -j -b -f $(DIAG)
|
|
|
|
coverage:
|
|
@../scripts/coverage-calc ".tmp/script-coverage*" coverage.log `pwd`/../../scripts
|
|
|
|
cleanup:
|
|
@rm -f $(DIAG)
|
|
@rm -f .tmp/script-coverage*
|
|
|
|
update-doc-sources:
|
|
../../doc/scripts/genDocSourcesList.sh ../../doc/scripts/DocSourcesList.cmake
|
|
|
|
.PHONY: all btest-verbose brief btest-brief coverage cleanup
|