Merge lp:~linuxjedi/drizzle/trunk-bug-709106 into lp:drizzle/7.0

Proposed by Andrew Hutchings
Status: Merged
Approved by: Lee Bieber
Approved revision: 2122
Merged at revision: 2125
Proposed branch: lp:~linuxjedi/drizzle/trunk-bug-709106
Merge into: lp:drizzle/7.0
Diff against target: 29 lines (+3/-3)
1 file modified
m4/pandora_have_libboost_test.m4 (+3/-3)
To merge this branch: bzr merge lp:~linuxjedi/drizzle/trunk-bug-709106
Reviewer Review Type Date Requested Status
Drizzle Developers Pending
Review via email: mp+47805@code.launchpad.net

Description of the change

typos in boost::test's pandora file meant unittests wasn't executed during make check

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'm4/pandora_have_libboost_test.m4'
--- m4/pandora_have_libboost_test.m4 2011-01-23 21:32:31 +0000
+++ m4/pandora_have_libboost_test.m4 2011-01-28 13:33:17 +0000
@@ -16,7 +16,7 @@
16 ],[16 ],[
17 boost::unit_test::unit_test_log.set_threshold_level(boost::unit_test::log_messages);17 boost::unit_test::unit_test_log.set_threshold_level(boost::unit_test::log_messages);
18 ])18 ])
19 AS_IF([test "x${ac_cv_libboost_test_framework_mt}" = "xno"],[19 AS_IF([test "x${ac_cv_libboost_unit_test_framework_mt}" = "xno"],[
20 AC_LIB_HAVE_LINKFLAGS(boost_unit_test_framework,,[20 AC_LIB_HAVE_LINKFLAGS(boost_unit_test_framework,,[
21 #include <boost/test/unit_test.hpp>21 #include <boost/test/unit_test.hpp>
22 ],[22 ],[
@@ -26,7 +26,7 @@
26 AC_LANG_POP()26 AC_LANG_POP()
27 27
28 AM_CONDITIONAL(HAVE_BOOST_TEST,28 AM_CONDITIONAL(HAVE_BOOST_TEST,
29 [test "x${ac_cv_libboost_test_framework}" = "xyes" -o "x${ac_cv_libboost_test_framework_mt}" = "xyes"])29 [test "x${ac_cv_libboost_unit_test_framework}" = "xyes" -o "x${ac_cv_libboost_unit_test_framework_mt}" = "xyes"])
30 BOOST_LIBS="${BOOST_LIBS} ${LTLIBBOOST_TEST_MT} ${LTLIBBOOST_TEST}"30 BOOST_LIBS="${BOOST_LIBS} ${LTLIBBOOST_TEST_MT} ${LTLIBBOOST_TEST}"
31 AC_SUBST(BOOST_LIBS) 31 AC_SUBST(BOOST_LIBS)
32])32])
@@ -39,7 +39,7 @@
39AC_DEFUN([PANDORA_REQUIRE_BOOST_TEST],[39AC_DEFUN([PANDORA_REQUIRE_BOOST_TEST],[
40 PANDORA_REQUIRE_BOOST($1)40 PANDORA_REQUIRE_BOOST($1)
41 _PANDORA_SEARCH_BOOST_TEST($1)41 _PANDORA_SEARCH_BOOST_TEST($1)
42 AS_IF([test "x${ac_cv_libboost_test_framework}" = "xno" -a "x${ac_cv_libboost_test_framework_mt}" = "xno"],42 AS_IF([test "x${ac_cv_libboost_unit_test_framework}" = "xno" -a "x${ac_cv_libboost_unit_test_framework_mt}" = "xno"],
43 AC_MSG_ERROR([boost::test is required for ${PACKAGE}]))43 AC_MSG_ERROR([boost::test is required for ${PACKAGE}]))
44])44])
4545

Subscribers

People subscribed via source and target branches