summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2677_Regression
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-08-26 13:48:03 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-08-26 13:48:03 +0000
commit6dba7440df233b252f20285f7a7d4ebc047f1662 (patch)
treeeedcf027c82216dffc066c9f1a8a8e5935c1ab57 /TAO/tests/Bug_2677_Regression
parent424e22aff4d610959c0f4b2abf310a6d103c4838 (diff)
downloadATCD-6dba7440df233b252f20285f7a7d4ebc047f1662.tar.gz
Thu Aug 26 13:44:36 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Dump_Schedule/Dump_Schedule.cpp: * orbsvcs/Event_Service/Event_Service.cpp: * orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp: * orbsvcs/orbsvcs/IFRService/IFR_Service_Loader.cpp: * tests/AMH_Exceptions/client.cpp: * tests/AMH_Exceptions/server.cpp: * tests/Abstract_Interface/client.cpp: * tests/Abstract_Interface/server.cpp: * tests/Abstract_Interface/test_i.h: * tests/Abstract_Interface/test_i.cpp: * tests/Alt_Mapping/options.cpp: * tests/Bug_2677_Regression/DllORB.cpp: * tests/Bug_2936_Regression/DllORB.cpp: * tests/Bug_2966_Regression/Hello.cpp: * tests/Bug_2966_Regression/client.cpp: * tests/Bug_2966_Regression/server.cpp: * tests/Bug_3251_Regression/DllOrb.cpp: * tests/Bug_3524_Regression/client.cpp: * tests/Bug_3524_Regression/server.cpp: * tests/Bug_3524_Regression/test_i.cpp: * tests/Bug_3542_Regression/DllOrb.cpp: * tests/Bug_3647_Regression/Backend_Impl.cpp: * tests/Bug_3647_Regression/Middle_Impl.cpp: * tests/Bug_3647_Regression/backend_server.cpp: * tests/Bug_3647_Regression/client.cpp: * tests/Bug_3647_Regression/middle_server.cpp: * tests/COIOP/Client_Task.cpp: * tests/COIOP/Hello.cpp: * tests/COIOP/Server_Task.cpp: * tests/MProfile_Connection_Timeout/client.cpp: * tests/MProfile_Connection_Timeout/server.cpp: * tests/OctetSeq/OctetSeq.cpp: * tests/OctetSeq/client.cpp: * tests/OctetSeq/server.cpp: * tests/OctetSeq/test_i.cpp: * tests/POA/Default_Servant/Default_Servant.cpp: * tests/Param_Test/ub_struct_seq.cpp: * tests/TransportCurrent/Framework/Current_Test_Impl.cpp: * tests/TransportCurrent/Framework/Server_Main.cpp: * tests/TransportCurrent/Framework/Tester.cpp: * tests/TransportCurrent/Framework/server.cpp: * tests/TransportCurrent/Framework/simple.cpp: * tests/TransportCurrent/IIOP/Current_Test_Impl.cpp: * tests/TransportCurrent/IIOP/IIOP_Server_Main.cpp: * tests/TransportCurrent/IIOP/IIOP_Server_Request_Interceptor.cpp: * tests/TransportCurrent/IIOP/client.cpp: * tests/TransportCurrent/IIOP/server.cpp: * tests/TransportCurrent/lib/Client_ORBInitializer.cpp: * tests/TransportCurrent/lib/Client_Request_Interceptor.cpp: * tests/TransportCurrent/lib/Current_Test.idl: * tests/TransportCurrent/lib/Server_ORBInitializer.cpp: * tests/TransportCurrent/lib/Server_Request_Interceptor.cpp: Various cleanup * tao/Utils/Auto_Functor.h: * tao/Auto_Functor.h: Removed this file, use the ACE file
Diffstat (limited to 'TAO/tests/Bug_2677_Regression')
-rw-r--r--TAO/tests/Bug_2677_Regression/DllORB.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/TAO/tests/Bug_2677_Regression/DllORB.cpp b/TAO/tests/Bug_2677_Regression/DllORB.cpp
index 543eb993938..243fa017ebe 100644
--- a/TAO/tests/Bug_2677_Regression/DllORB.cpp
+++ b/TAO/tests/Bug_2677_Regression/DllORB.cpp
@@ -5,7 +5,6 @@
#include "ace/OS_NS_unistd.h"
#include "tao/TAO_Singleton_Manager.h"
-
DllORB::DllORB (void)
: failPrePostInit_ (3),
mv_orb_ (),
@@ -13,12 +12,10 @@ DllORB::DllORB (void)
{
}
-
DllORB::~DllORB (void)
{
}
-
int
DllORB::init (int argc, ACE_TCHAR *argv[])
{
@@ -87,8 +84,7 @@ DllORB::init (int argc, ACE_TCHAR *argv[])
}
// Initialize the ORB
- ACE_Argv_Type_Converter argcon (argc, argv);
- mv_orb_ = CORBA::ORB_init (argcon.get_argc (), argcon.get_ASCII_argv ());
+ mv_orb_ = CORBA::ORB_init (argc, argv);
if (CORBA::is_nil (mv_orb_.in ()))
{
ACE_DEBUG ((LM_ERROR, ACE_TEXT ("nil ORB\n")));