Adding Makefile target test-all that also runs the BroControl test

suite.

Eventually "make test" should do this but let's trigger it separately
for now.
This commit is contained in:
Robin Sommer 2013-05-31 17:32:27 -07:00
parent 6d478bea57
commit 45f6f11e51

View file

@ -61,7 +61,10 @@ distclean:
rm -rf $(BUILD) rm -rf $(BUILD)
test: test:
@(cd testing && make ) @( cd testing && make )
test-all: test
test -d aux/broctl && ( cd aux/broctl && make test )
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 )