Splitting test-all target into Bro tests and test-aux.

Also making failure of one sub-suite non-fatal.
This commit is contained in:
Robin Sommer 2015-03-17 15:52:17 -07:00
parent 468e7bbce2
commit d3afe97f83
3 changed files with 14 additions and 7 deletions

View file

@ -1,4 +1,9 @@
2.3-555 | 2015-03-17 15:57:13 -0700
* Splitting test-all Makefile target into Bro tests and test-aux.
(Robin Sommer)
2.3-554 | 2015-03-17 15:40:39 -0700 2.3-554 | 2015-03-17 15:40:39 -0700
* Deprecate &rotate_interval, &rotate_size, &encrypt. Addresses * Deprecate &rotate_interval, &rotate_size, &encrypt. Addresses

View file

@ -51,13 +51,15 @@ distclean:
$(MAKE) -C testing $@ $(MAKE) -C testing $@
test: test:
@( cd testing && make ) -@( cd testing && make )
test-all: test test-aux:
test -d aux/broctl && ( cd aux/broctl && make test-all ) -test -d aux/broctl && ( cd aux/broctl && make test-all )
test -d aux/btest && ( cd aux/btest && make test ) -test -d aux/btest && ( cd aux/btest && make test )
test -d aux/bro-aux && ( cd aux/bro-aux && make test ) -test -d aux/bro-aux && ( cd aux/bro-aux && make test )
test -d aux/plugins && ( cd aux/plugins && make test-all ) -test -d aux/plugins && ( cd aux/plugins && make test-all )
test-all: test test-aux
configured: configured:
@test -d $(BUILD) || ( echo "Error: No build/ directory found. Did you run configure?" && exit 1 ) @test -d $(BUILD) || ( echo "Error: No build/ directory found. Did you run configure?" && exit 1 )

View file

@ -1 +1 @@
2.3-554 2.3-555