From: Willem Jan Withagen Date: Thu, 24 Mar 2016 12:26:20 +0000 (+0100) Subject: FreeBSD/src/test/Makefile.am: fix lexecinfo and exclude tests X-Git-Tag: v11.0.0~547^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0b40cf886fe5a2f2325803855b2080d46813e11c;p=ceph.git FreeBSD/src/test/Makefile.am: fix lexecinfo and exclude tests - execinfo is required to backtrace() - execlude tests that depended on using nosetests. nosetests is not working for these tests atm. Signed-off-by: Willem Jan Withagen --- diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 536edbf0126..fb30394db39 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -143,6 +143,11 @@ UNITTEST_LDADD += \ -lsocket -lnsl endif +if FREEBSD +UNITTEST_LDADD += \ + -lexecinfo +endif + unittest_addrs_SOURCES = test/test_addrs.cc unittest_addrs_CXXFLAGS = $(UNITTEST_CXXFLAGS) unittest_addrs_LDADD = $(UNITTEST_LDADD) $(CEPH_GLOBAL) @@ -447,8 +452,14 @@ unittest_async_compressor_CXXFLAGS = $(UNITTEST_CXXFLAGS) unittest_async_compressor_LDADD = $(UNITTEST_LDADD) $(CEPH_GLOBAL) $(LIBCOMPRESSOR) $(LIBCOMMON) check_PROGRAMS += unittest_async_compressor +if LINUX +# +# XXX FREEBSD +# These tests use nosetests and getting that to work thusfar has not worked +# check_SCRIPTS += test/pybind/test_ceph_argparse.py check_SCRIPTS += test/pybind/test_ceph_daemon.py +endif ceph_test_objectcacher_stress_SOURCES = \ test/osdc/object_cacher_stress.cc \