[asterisk-scf-commits] asterisk-scf/integration/logger.git branch "master" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Tue Nov 9 11:41:30 CST 2010


branch "master" has been updated
       via  a044bc5c787b6ee1b5a4581a2c9bab8cbacbc2b9 (commit)
      from  8ffbc69c7e613b4d00dca2e1aa155ed702970e4b (commit)

Summary of changes:
 client/test/client-test.cpp |    3 ++-
 server/test/server-test.cpp |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit a044bc5c787b6ee1b5a4581a2c9bab8cbacbc2b9
Author: David M. Lee <dlee at digium.com>
Date:   Tue Nov 9 00:04:41 2010 -0600

    Fixed logger test failures on Mac.
    
    I was mixing the use of linking in boost_unit_test_framework and the
    single header variant, which caused all sorts of grief.

diff --git a/client/test/client-test.cpp b/client/test/client-test.cpp
index 4b29507..611848a 100644
--- a/client/test/client-test.cpp
+++ b/client/test/client-test.cpp
@@ -14,5 +14,6 @@
  * at the top of the source tree.
  */
 
+#define BOOST_TEST_DYN_LINK
 #define BOOST_TEST_MODULE Logger-client
-#include <boost/test/included/unit_test.hpp>
+#include <boost/test/unit_test.hpp>
diff --git a/server/test/server-test.cpp b/server/test/server-test.cpp
index 3dbaff9..cc7b3bc 100644
--- a/server/test/server-test.cpp
+++ b/server/test/server-test.cpp
@@ -14,5 +14,6 @@
  * at the top of the source tree.
  */
 
+#define BOOST_TEST_DYN_LINK
 #define BOOST_TEST_MODULE Logger-server
-#include <boost/test/included/unit_test.hpp>
+#include <boost/test/unit_test.hpp>

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/logger.git



More information about the asterisk-scf-commits mailing list