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

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Tue Sep 14 22:44:23 CDT 2010


branch "master" has been updated
       via  36f30730c67ee4b0d2b889057106a12db3bc0e1a (commit)
       via  be940a2f818c8be3992250e6b9325af1fc4fa7b5 (commit)
      from  43bc3f539ea83a171a22424633e277d0cb8c1545 (commit)

Summary of changes:
 test/CMakeLists.txt  |    2 ++
 test/TestRouting.cpp |    4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit 36f30730c67ee4b0d2b889057106a12db3bc0e1a
Author: David M. Lee <dlee at digium.com>
Date:   Tue Sep 14 22:41:30 2010 -0500

    Add RoutingTest to CTest.

diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index d5abd3a..06b43e6 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -9,3 +9,5 @@ hydra_component_add_ice_libraries(RoutingTest IceStorm)
 hydra_component_add_boost_libraries(RoutingTest unit_test_framework)
 hydra_component_build_standalone(RoutingTest)
 hydra_component_install(RoutingTest RUNTIME bin "Routing Service Test Driver." Test)
+
+boost_add_test(RoutingTest)

commit be940a2f818c8be3992250e6b9325af1fc4fa7b5
Author: David M. Lee <dlee at digium.com>
Date:   Tue Sep 14 22:40:45 2010 -0500

    Fixed warning about ctor ordering.

diff --git a/test/TestRouting.cpp b/test/TestRouting.cpp
index 6ada93d..76bae90 100644
--- a/test/TestRouting.cpp
+++ b/test/TestRouting.cpp
@@ -335,7 +335,7 @@ typedef IceUtil::Handle<SessionImpl> SessionImplPtr;
 class SessionEndpointImpl : public SessionEndpoint
 {
 public:
-   SessionEndpointImpl(const std::string& id) : mCounter(0), mId(id) {}
+   SessionEndpointImpl(const std::string& id) : mId(id), mCounter(0) {}
 
    virtual SessionPrx createSession(const string& dest, const SessionListenerPrx& listener, const ::Ice::Current& = ::Ice::Current())
    {
@@ -756,4 +756,4 @@ BOOST_FIXTURE_TEST_CASE(RouteSession, PerTestFixture)
       BOOST_TEST_MESSAGE("Exception routing session.");
       BOOST_CHECK(unknownException);
    }
-}
\ No newline at end of file
+}

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


-- 
asterisk-scf/integration/routing.git



More information about the asterisk-scf-commits mailing list