summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-04-11 20:02:08 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-04-11 20:02:08 +0200
commitc674522f93bf7bfafb2b94ecc142ce333f87c9dd (patch)
tree3ef0738cae23b091b4adfbe87142ee41f0de0d73 /TAO
parenta1de64b58f63ab32781632785f2934eb548fd4b0 (diff)
downloadATCD-c674522f93bf7bfafb2b94ecc142ce333f87c9dd.tar.gz
Layout changes
* TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.cpp: * TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h: * TAO/orbsvcs/tests/ImplRepo/RestartServer/README: * TAO/orbsvcs/tests/ImplRepo/kill_server/README: * TAO/orbsvcs/tests/ImplRepo/ping_interrupt/README:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.cpp14
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h12
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/RestartServer/README2
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/kill_server/README2
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/ping_interrupt/README2
5 files changed, 6 insertions, 26 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.cpp b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.cpp
index 8d781e5a64d..adc92c4336a 100644
--- a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.cpp
@@ -1,7 +1,6 @@
#include "test_i.h"
#include "ace/OS_NS_time.h"
-
// Implementation skeleton constructor
Test_Dummy_i::Test_Dummy_i (void)
{
@@ -12,9 +11,7 @@ Test_Dummy_i::~Test_Dummy_i (void)
{
}
-char * Test_Dummy_i::getMessage (
- void
- )
+char * Test_Dummy_i::getMessage (void)
{
// Add your implementation here
return CORBA::string_dup("Test::Dummy---->Hello World");
@@ -29,22 +26,17 @@ Test_Time_i::~Test_Time_i (void)
{
}
-::CORBA::Long Test_Time_i::current_time (
- void
- )
+::CORBA::Long Test_Time_i::current_time (void)
{
ACE_DEBUG ((LM_DEBUG, "(%P|%t)Test_Time_i::current_time called\n"));
return CORBA::Long (ACE_OS::time (0));
}
-void Test_Time_i::shutdown (
- void
- )
+void Test_Time_i::shutdown (void)
{
ACE_DEBUG ((LM_DEBUG,
"%s\n",
"Time_i is shutting down"));
-
}
diff --git a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
index 3b77ade88cc..53cef409396 100644
--- a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
+++ b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
@@ -31,15 +31,9 @@ public:
// Destructor
virtual ~Test_Time_i (void);
- virtual
- ::CORBA::Long current_time (
- void
- );
-
- virtual
- void shutdown (
- void
- );
+ virtual ::CORBA::Long current_time (void);
+
+ virtual void shutdown (void);
};
diff --git a/TAO/orbsvcs/tests/ImplRepo/RestartServer/README b/TAO/orbsvcs/tests/ImplRepo/RestartServer/README
index e324f8ef8a7..999b2bb56df 100644
--- a/TAO/orbsvcs/tests/ImplRepo/RestartServer/README
+++ b/TAO/orbsvcs/tests/ImplRepo/RestartServer/README
@@ -1,5 +1,3 @@
-
-
This test verifies that if a server launched by the ImR activator is terminated,
then it will be relaunched transparently by the ORB if the client makes another
request if -ORBForwardOnTransientLimit and -ORBForwardOnReplyClosedLimit options
diff --git a/TAO/orbsvcs/tests/ImplRepo/kill_server/README b/TAO/orbsvcs/tests/ImplRepo/kill_server/README
index 0390eb5cd8a..834c10e14c2 100644
--- a/TAO/orbsvcs/tests/ImplRepo/kill_server/README
+++ b/TAO/orbsvcs/tests/ImplRepo/kill_server/README
@@ -1,5 +1,3 @@
-
-
This test starts up servers then uses the tao_imr kill command to force server
termination via signal.
diff --git a/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/README b/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/README
index 764020f184b..5db1a2a08b1 100644
--- a/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/README
+++ b/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/README
@@ -1,5 +1,3 @@
-
-
This test runs checks the behavior of the IMR when a server shuts down
while it is in the middle of handling a ping request from the ImR
Locator. This scenario could happen in an MT server, although to avoid