summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1495_Regression
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-03-07 07:59:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-03-07 07:59:19 +0000
commit882eeb0d30c157874094f483dfdfbe6c9ed26107 (patch)
tree09fa795bcc67026b17366b7e3e35ba4a37a91e4d /TAO/tests/Bug_1495_Regression
parenta0bb1d1c2a7d7a061b3a54aecbd0dcc8d67f480e (diff)
downloadATCD-882eeb0d30c157874094f483dfdfbe6c9ed26107.tar.gz
ChangeLogTag: Mon Mar 07 07:59:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Bug_1495_Regression')
-rw-r--r--TAO/tests/Bug_1495_Regression/Client_Task.cpp2
-rw-r--r--TAO/tests/Bug_1495_Regression/Server_Task.cpp2
-rw-r--r--TAO/tests/Bug_1495_Regression/Threaded_Server.cpp2
-rw-r--r--TAO/tests/Bug_1495_Regression/test.idl8
4 files changed, 6 insertions, 8 deletions
diff --git a/TAO/tests/Bug_1495_Regression/Client_Task.cpp b/TAO/tests/Bug_1495_Regression/Client_Task.cpp
index 9dce02882fc..4732996c119 100644
--- a/TAO/tests/Bug_1495_Regression/Client_Task.cpp
+++ b/TAO/tests/Bug_1495_Regression/Client_Task.cpp
@@ -75,7 +75,7 @@ Client_Task::svc (void)
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "Caught exception:");
+ "Caught exception in client task:");
return 1;
}
ACE_ENDTRY;
diff --git a/TAO/tests/Bug_1495_Regression/Server_Task.cpp b/TAO/tests/Bug_1495_Regression/Server_Task.cpp
index 6b8e6984cff..acaf0e35779 100644
--- a/TAO/tests/Bug_1495_Regression/Server_Task.cpp
+++ b/TAO/tests/Bug_1495_Regression/Server_Task.cpp
@@ -105,7 +105,7 @@ Server_Task::svc (void)
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "Caught an exception: ");
+ "Caught an exception in server task: ");
return 1;
}
ACE_ENDTRY;
diff --git a/TAO/tests/Bug_1495_Regression/Threaded_Server.cpp b/TAO/tests/Bug_1495_Regression/Threaded_Server.cpp
index 462a921e2aa..5d2cb6a1669 100644
--- a/TAO/tests/Bug_1495_Regression/Threaded_Server.cpp
+++ b/TAO/tests/Bug_1495_Regression/Threaded_Server.cpp
@@ -177,7 +177,7 @@ main (int argc, char *argv[])
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "Caught an exception:");
+ "Caught an exception in server:");
return 1;
}
ACE_ENDTRY;
diff --git a/TAO/tests/Bug_1495_Regression/test.idl b/TAO/tests/Bug_1495_Regression/test.idl
index 5b920f53097..60a9b2e526b 100644
--- a/TAO/tests/Bug_1495_Regression/test.idl
+++ b/TAO/tests/Bug_1495_Regression/test.idl
@@ -18,15 +18,13 @@
module Bug1495_Regression
{
+ /// A test idl to check Bug 1495
interface Bug1495
{
- // = TITLE
- // A test idl to check Bug 1495
-
+ /// get the thread id of the thread that services this request.
void get_thread_id (out long thread_id);
- // get the thread id of the thread that services this request.
+ /// Shutdown the ORB.
oneway void shutdown ();
- // Shutdown the ORB.
};
};