summaryrefslogtreecommitdiff
path: root/cpp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/Makefile')
-rw-r--r--cpp/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/cpp/Makefile b/cpp/Makefile
index 9abdf40f14..28f2212a7a 100644
--- a/cpp/Makefile
+++ b/cpp/Makefile
@@ -22,16 +22,20 @@
UNITTESTS=$(wildcard common/*/test/*.so broker/test/*.so)
-.PHONY: all clean doxygen
+.PHONY: all test unittest pythontest runtests clean doxygen
-test: all
- @$(MAKE) runtests
+test: all runtests
-runtests:
+unittest:
DllPlugInTester -c -b $(UNITTESTS)
+
+pythontest:
bin/qpidd >> qpidd.log &
cd ../python ; ./run-tests -v -I cpp_failing.txt
+runtests:
+ $(MAKE) -k unittest pythontest
+
all:
@$(MAKE) -C common all
@$(MAKE) -C broker all