mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00
Splitting test-all target into Bro tests and test-aux.
Also making failure of one sub-suite non-fatal.
This commit is contained in:
parent
468e7bbce2
commit
d3afe97f83
3 changed files with 14 additions and 7 deletions
14
Makefile
14
Makefile
|
@ -51,13 +51,15 @@ distclean:
|
|||
$(MAKE) -C testing $@
|
||||
|
||||
test:
|
||||
@( cd testing && make )
|
||||
-@( cd testing && make )
|
||||
|
||||
test-all: test
|
||||
test -d aux/broctl && ( cd aux/broctl && make test-all )
|
||||
test -d aux/btest && ( cd aux/btest && make test )
|
||||
test -d aux/bro-aux && ( cd aux/bro-aux && make test )
|
||||
test -d aux/plugins && ( cd aux/plugins && make test-all )
|
||||
test-aux:
|
||||
-test -d aux/broctl && ( cd aux/broctl && make test-all )
|
||||
-test -d aux/btest && ( cd aux/btest && make test )
|
||||
-test -d aux/bro-aux && ( cd aux/bro-aux && make test )
|
||||
-test -d aux/plugins && ( cd aux/plugins && make test-all )
|
||||
|
||||
test-all: test test-aux
|
||||
|
||||
configured:
|
||||
@test -d $(BUILD) || ( echo "Error: No build/ directory found. Did you run configure?" && exit 1 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue