Aidan Skinner wrote:
Download it from http://people.apache.org/~aidan/qpid/M3-beta/ and provide feedback to [email protected] or via Jira: https://issues.apache.org/jira/browse/QPID
There is an issue[1] with running 'make check' for the c++ dist on systems with openais installed due to ais_check is not being included. The workaround if you are testing on such a system is to specify --without-cpg to configure.
Attached is a patch that fixes this by always including the cluster related test scripts in the distribution. Alan, are you happy with this fix? If so I'll check it in.
[1] https://issues.apache.org/jira/browse/QPID-1249
Index: src/tests/cluster.mk =================================================================== --- src/tests/cluster.mk (revision 686719) +++ src/tests/cluster.mk (working copy) @@ -12,7 +12,6 @@ # ais_check checks pre-requisites for cluster tests and runs them if ok. TESTS+=ais_check -EXTRA_DIST+=ais_check start_cluster stop_cluster check_PROGRAMS+=cluster_test cluster_test_SOURCES=unit_test.cpp cluster_test.cpp Index: src/tests/Makefile.am =================================================================== --- src/tests/Makefile.am (revision 686719) +++ src/tests/Makefile.am (working copy) @@ -83,6 +83,7 @@ libshlibtest_la_SOURCES = shlibtest.cpp include cluster.mk +EXTRA_DIST+=ais_check start_cluster stop_cluster # # Other test programs
