From 50cd0cd44deb7b5c90e71eed1c9f3cf1666a70fe Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 7 Jun 2007 14:29:24 +0000 Subject: Build support for clustering, initial CPG wrapper & tests. - src/qpid/cluster/Cpg.cpp: C++ wrapper for the openais CPG library. - src/tests/unit/Cpg.cpp: verify CPG functions in make check. - makefiles etc.: build cluster stuff only if openais is installed. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@545190 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/cluster.mk | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 cpp/src/tests/cluster.mk (limited to 'cpp/src/tests/cluster.mk') diff --git a/cpp/src/tests/cluster.mk b/cpp/src/tests/cluster.mk new file mode 100644 index 0000000000..489eec748e --- /dev/null +++ b/cpp/src/tests/cluster.mk @@ -0,0 +1,23 @@ +#-*-Makefile-*- +# Cluster tests makefile fragment, to be included in Makefile.am +# + +lib_cluster = $(abs_builddir)/../libqpidcluster.la +# +# AIS_UNIT_TESTS must be called with gid=ais. They are run +# separately under sudo -u ais. +# +AIS_UNIT_TESTS= + +AIS_UNIT_TESTS+=Cpg +Cpg_SOURCES=unit/Cpg.cpp +Cpg_LDADD=-lboost_unit_test_framework $(lib_cluster) + +RUN_AIS_TESTS=ais_unit_tests # Run ais unit tests via check-ais. + +# The chmod is a horrible hack to allow libtools annoying wrapers to +# relink the executable when run as user ais. +check-ais: $(AIS_UNIT_TESTS) + chmod a+rwx . .libs + sudo -u ais $(MAKE) check TESTS=$(AIS_UNIT_TESTS) + -- cgit v1.2.1