diff options
author | vzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-09-23 13:07:05 +0000 |
---|---|---|
committer | vzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-09-23 13:07:05 +0000 |
commit | f86178739b05c4445a90170d3f57f836b38eb324 (patch) | |
tree | 545b8f5b9ef2dd47104bb0cdea6fd0f74e145c2d /TAO/tests/Oneways_Invoking_Twoways | |
parent | 28a114008f189f99a824c6ded03efc0a2b0f0c52 (diff) | |
download | ATCD-f86178739b05c4445a90170d3f57f836b38eb324.tar.gz |
Thu Sep 23 12:50:25 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com>
* orbsvcs/orbsvcs/Trader/Service_Type_Repository.h:
* orbsvcs/orbsvcs/Trader/Trader_Utils.h:
* orbsvcs/orbsvcs/Trader/Trader_Interfaces.h:
* orbsvcs/FT_ReplicationManager/FT_DefaultFaultAnalyzer.cpp:
Removed non-ASCII characters in comments.
* orbsvcs/examples/ImR/Combined_Service/start_all.conf:
* orbsvcs/examples/ImR/Combined_Service/run_test.pl:
Extended timeouts. Previous ones were too short on valgrind builds.
* tao/PortableServer/RequestProcessingStrategyDefaultServant.cpp:
* tao/PortableServer/RequestProcessingStrategyServantActivator.cpp:
* tao/PortableServer/RequestProcessingStrategyAOMOnly.cpp:
* tao/PortableServer/RequestProcessingStrategyServantLocator.cpp:
Added code that ignores any exception from the servant's cleanup.
This fixes a problem where servant wasn't removed from a poa in case
servant's destructor threw an exception.
* tests/ORB_shutdown/Foo_Bar.cpp:
Don't allow exceptions to propagate out of the servant's destructor.
* performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl:
Extended the test so that it can run without SHMIOP part.
* tests/Bug_1361_Regression/Server_Thread_Pool.cpp:
* tests/Bug_1476_Regression/Sender_i.h:
* tests/Codec/client.cpp:
* tests/DII_AMI_Forward/server_interceptor.cpp:
* tests/NestedUpcall/Triangle_Test/initiator.cpp:
* tests/NestedUpcall/Triangle_Test/Object_A_i.cpp:
* tests/NestedUpcall/Triangle_Test/Object_B_i.cpp:
* tests/NestedUpcall/Triangle_Test/Object_A_i.h:
* tests/NestedUpcall/Triangle_Test/Object_B_i.h:
* tests/NestedUpcall/Triangle_Test/Triangle_Test.idl:
* tests/NestedUpcall/Triangle_Test/run_test.pl:
* tests/AMH_Exceptions/server.cpp:
* tests/MProfile_Connection_Timeout/client.cpp:
* tests/Oneways_Invoking_Twoways/Sender_i.h:
* tests/Bug_1476_Test/client.cpp:
Fixed memory leaks local to these tests.
Diffstat (limited to 'TAO/tests/Oneways_Invoking_Twoways')
-rw-r--r-- | TAO/tests/Oneways_Invoking_Twoways/Sender_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h index ab267b02277..e566594f46e 100644 --- a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h +++ b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h @@ -43,7 +43,7 @@ public: private: /// Our local ORB ptr - CORBA::ORB_ptr orb_; + CORBA::ORB_var orb_; /// Number of invocations to be made on the receiver CORBA::ULong number_; |