summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-02-16 16:05:33 +0100
committerGitHub <noreply@github.com>2018-02-16 16:05:33 +0100
commitcb29bd46571e428d1d71c860ec9010d29a3a1fe4 (patch)
tree217863ac67489d725294c2be792708fd5c223976 /TAO
parent4665969af11545a831900244fd4ac6fa6f30a155 (diff)
parentd14029823bf4be658affed6c0a413b45534e5cfe (diff)
downloadATCD-cb29bd46571e428d1d71c860ec9010d29a3a1fe4.tar.gz
Merge pull request #573 from jwillemsen/jwi-taoidlleak
Add new C++ compiler test for testing a feature TAO is using
Diffstat (limited to 'TAO')
-rw-r--r--TAO/tests/Bug_3683_Regression/Echo.idl12
-rw-r--r--TAO/tests/Bug_3683_Regression/Simple_util.h2
2 files changed, 6 insertions, 8 deletions
diff --git a/TAO/tests/Bug_3683_Regression/Echo.idl b/TAO/tests/Bug_3683_Regression/Echo.idl
index ffc69e77ab6..52779336b89 100644
--- a/TAO/tests/Bug_3683_Regression/Echo.idl
+++ b/TAO/tests/Bug_3683_Regression/Echo.idl
@@ -2,24 +2,22 @@
#if !defined (_ECHO_IDL)
#define _ECHO_IDL
+// Defines an interface that encapsulates operations that return the
+// mesg string to be displayed and shuts down the server.
interface Echo
{
- // = TITLE
- // Defines an interface that encapsulates operations that return the
- // mesg string to be displayed and shuts down the server.
-
typedef sequence<Object> List;
- List echo_list (in string message);
// This operation returns the message as a sequence of Objects and
// displays it on the screen as a string.
+ List echo_list (in string message);
- string echo_string (in string message);
// This operation returns the message as a string and displays it on
// the screen.
+ string echo_string (in string message);
- oneway void shutdown ();
// This operation will shutdown the server.
+ oneway void shutdown ();
};
#endif /* _ECHO_IDL */
diff --git a/TAO/tests/Bug_3683_Regression/Simple_util.h b/TAO/tests/Bug_3683_Regression/Simple_util.h
index a890314a03c..b0564357d7c 100644
--- a/TAO/tests/Bug_3683_Regression/Simple_util.h
+++ b/TAO/tests/Bug_3683_Regression/Simple_util.h
@@ -27,7 +27,7 @@
* A template server definition. This template can be used by
* single server/client projects for definition of their
* server/clients. See the directories time, bank, echo for
- * further details of implemenatation.
+ * further details of implementation.
*/
template <class Servant>
class Server