From 45f6f11e51fec58f2c0d43c4bce10a51d6a6e3af Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Fri, 31 May 2013 17:32:27 -0700 Subject: [PATCH] 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. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 455fa6ed88..adf45f84f4 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,10 @@ distclean: rm -rf $(BUILD) test: - @(cd testing && make ) + @( cd testing && make ) + +test-all: test + test -d aux/broctl && ( cd aux/broctl && make test ) configured: @test -d $(BUILD) || ( echo "Error: No build/ directory found. Did you run configure?" && exit 1 )