summaryrefslogtreecommitdiff
path: root/TAO/tests/POA
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-01-02 12:37:10 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-01-02 12:37:10 +0100
commitb9aa5bd4892d0de338420540480fc5a1f11cfae7 (patch)
treef550e6b860a391ba37d62073eee6f706e610cdbc /TAO/tests/POA
parent888473f332f9a3f57cf31036c72ce51782883e2c (diff)
downloadATCD-b9aa5bd4892d0de338420540480fc5a1f11cfae7.tar.gz
Fixed typo
* ACE/ACEXML/common/DTD_Manager.h: * ACE/ACEXML/common/NamespaceSupport.h: * ACE/ACEXML/parser/debug_validator/Debug_DTD_Manager.h: * ACE/ace/Containers_T.h: * ACE/ace/DLL.h: * ACE/ace/QoS/QoS_Session.h: * ACE/ace/QoS/QoS_Session_Impl.cpp: * ACE/ace/QoS/QoS_Session_Impl.h: * ACE/ace/RB_Tree.h: * ACE/ace/SSL/SSL_SOCK_Stream.cpp: * ACE/ace/SSL/SSL_SOCK_Stream.inl: * ACE/ace/Select_Reactor_T.cpp: * ACE/ace/TP_Reactor.cpp: * ACE/ace/Token.cpp: * ACE/apps/JAWS/clients/WebSTONE/src/nsapi-includes/base/file.h: * ACE/examples/APG/Signals/SigHandler.cpp: * ACE/examples/APG/Signals/SigHandlers.cpp: * ACE/examples/Reactor/Proactor/test_aiosig.cpp: * ACE/examples/Reactor/Proactor/test_aiosig_ace.cpp: * ACE/examples/Reactor/WFMO_Reactor/APC.cpp: * ACE/examples/Reactor/WFMO_Reactor/Abandoned.cpp: * ACE/examples/Reactor/WFMO_Reactor/Window_Messages.cpp: * ACE/tests/Cached_Accept_Conn_Test.cpp: * ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp: * ACE/tests/Dev_Poll_Reactor_Test.cpp: * TAO/DevGuideExamples/PortableInterceptors/Auth/ServerInitializer.cpp: * TAO/examples/Content_Server/AMI_Observer/Callback_Handler.cpp: * TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h: * TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp: * TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h: * TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp: * TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Round_Robin.cpp: * TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp: * TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp: * TAO/orbsvcs/tests/Concurrency/CC_command.cpp: * TAO/orbsvcs/tests/Event/Mcast/Two_Way/application.cpp: * TAO/orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.h: * TAO/tao/Connection_Handler.cpp: * TAO/tao/IIOP_Connector.cpp: * TAO/tao/Invocation_Utils.h: * TAO/tao/LF_CH_Event.h: * TAO/tao/ORB_Core.cpp: * TAO/tao/Stub.h: * TAO/tao/Stub.inl: * TAO/tao/Transport.h: * TAO/tests/Bug_1495_Regression/Threaded_Server.cpp: * TAO/tests/Bug_1495_Regression/server_interceptor.cpp: * TAO/tests/Bug_3748_Regression/client.cpp: * TAO/tests/DII_AMI_Forward/server_interceptor.cpp: * TAO/tests/DynValue_Test/main.cpp: * TAO/tests/Explicit_Event_Loop/client.cpp: * TAO/tests/Explicit_Event_Loop/server.cpp: * TAO/tests/IORManipulation/IORTest.cpp: * TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp: * TAO/tests/Portable_Interceptors/Bug_1559/server_interceptor.cpp: * TAO/tests/Portable_Interceptors/ForwardRequest/Client_Request_Interceptor.cpp: * TAO/tests/Portable_Interceptors/ForwardRequest/Server_Request_Interceptor.cpp: * TAO/tests/TransportCurrent/Framework/client.cpp: * TAO/tests/TransportCurrent/IIOP/client.cpp:
Diffstat (limited to 'TAO/tests/POA')
-rw-r--r--TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp b/TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp
index 359f2590012..acc635e0d36 100644
--- a/TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp
+++ b/TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp
@@ -7,7 +7,7 @@
const ACE_TCHAR *output = ACE_TEXT("test.ior");
const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
-CORBA::Boolean exception_occured = false;
+CORBA::Boolean exception_occurred = false;
ACE_CString server_orb;
ACE_CString client_orb;
@@ -28,11 +28,11 @@ parse_args (int argc, ACE_TCHAR *argv[])
break;
case 't':
// no exception expected
- exception_occured = false;
+ exception_occurred = false;
break;
case 'd':
// exception expected
- exception_occured = true;
+ exception_occurred = true;
break;
case '?':
default:
@@ -83,7 +83,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
Client_Task client_task (input,
corb.in (),
ACE_Thread_Manager::instance (),
- exception_occured);
+ exception_occurred);
if (client_task.activate (THR_NEW_LWP | THR_JOINABLE,
1,