summaryrefslogtreecommitdiff
path: root/tests/Bug_3567_Regression
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Bug_3567_Regression')
-rw-r--r--tests/Bug_3567_Regression/ami_test_i.cpp2
-rw-r--r--tests/Bug_3567_Regression/client.cpp17
-rw-r--r--tests/Bug_3567_Regression/server.cpp15
3 files changed, 12 insertions, 22 deletions
diff --git a/tests/Bug_3567_Regression/ami_test_i.cpp b/tests/Bug_3567_Regression/ami_test_i.cpp
index 212a4a819b3..c2f5f3bf243 100644
--- a/tests/Bug_3567_Regression/ami_test_i.cpp
+++ b/tests/Bug_3567_Regression/ami_test_i.cpp
@@ -18,8 +18,6 @@
#include "tao/debug.h"
#include "ace/OS_NS_unistd.h"
-ACE_RCSID(AMI, ami_test_i, "$Id$")
-
AMI_Test_i::AMI_Test_i (CORBA::ORB_ptr orb,
CORBA::Long in_l,
const char * in_str,
diff --git a/tests/Bug_3567_Regression/client.cpp b/tests/Bug_3567_Regression/client.cpp
index 188a2de3914..a3e7f9b8d02 100644
--- a/tests/Bug_3567_Regression/client.cpp
+++ b/tests/Bug_3567_Regression/client.cpp
@@ -15,10 +15,6 @@
#include "ace/OS_NS_unistd.h"
#include "ami_test_i.h"
-ACE_RCSID (AMI,
- client,
- "$Id$")
-
const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");
int nthreads = 5;
int niterations = 10;
@@ -62,18 +58,17 @@ parse_args (int argc, ACE_TCHAR *argv[])
argv [0]),
-1);
}
- // Indicates sucessful parsing of the command line
+ // Indicates successful parsing of the command line
return 0;
}
+/**
+ * Run a server thread
+ *
+ * Use the ACE_Task_Base class to run server threads
+ */
class Worker : public ACE_Task_Base
{
- // = TITLE
- // Run a server thread
- //
- // = DESCRIPTION
- // Use the ACE_Task_Base class to run server threads
- //
public:
Worker (CORBA::ORB_ptr orb);
// ctor
diff --git a/tests/Bug_3567_Regression/server.cpp b/tests/Bug_3567_Regression/server.cpp
index 50e1fa3ac85..cdcc3991947 100644
--- a/tests/Bug_3567_Regression/server.cpp
+++ b/tests/Bug_3567_Regression/server.cpp
@@ -20,19 +20,16 @@
#include "ace/Get_Opt.h"
#include "ace/Task.h"
-ACE_RCSID(AMI, server, "$Id$")
-
const ACE_TCHAR *ior_output_file = 0;
int nthreads = 5;
+/**
+ * Run a server thread
+ *
+ * Use the ACE_Task_Base class to run server threads
+ */
class Worker : public ACE_Task_Base
{
- // = TITLE
- // Run a server thread
- //
- // = DESCRIPTION
- // Use the ACE_Task_Base class to run server threads
- //
public:
Worker (CORBA::ORB_ptr orb);
// ctor
@@ -69,7 +66,7 @@ parse_args (int argc, ACE_TCHAR *argv[])
argv [0]),
-1);
}
- // Indicates sucessful parsing of the command line
+ // Indicates successful parsing of the command line
return 0;
}