summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-03-18 09:19:00 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-03-18 09:19:00 +0000
commit0f096482369285614fccb6b9900d1769a644bee4 (patch)
tree4675ccfe31a1dd4744532fbd624cd6df9e46e42d /TAO
parentd1878d5b6de7e49cc4fd520f568274f9a2b9bfbb (diff)
downloadATCD-0f096482369285614fccb6b9900d1769a644bee4.tar.gz
ChangeLogTag: Fri Mar 18 09:18:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp4
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Supplier.cpp4
3 files changed, 10 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ccf9a61b408..e3ab01660a5 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Fri Mar 18 09:18:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp:
+ * orbsvcs/tests/EC_Custom_Marshal/ECM_Supplier.cpp:
+ Print out whether we get an exception in the client or in the server
+
Thu Mar 17 11:00:57 2005 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp
index b263633f101..7203f01d09c 100644
--- a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp
@@ -174,11 +174,11 @@ Driver::run (int argc, char* argv[])
}
ACE_CATCH (CORBA::SystemException, sys_ex)
{
- ACE_PRINT_EXCEPTION (sys_ex, "SYS_EX");
+ ACE_PRINT_EXCEPTION (sys_ex, "SYS_EX in Consumer");
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "NON SYS EX");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "NON SYS EX in Consumer");
}
ACE_ENDTRY;
return 0;
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Supplier.cpp b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Supplier.cpp
index d37de8a9a41..03d902eb6d4 100644
--- a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Supplier.cpp
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Supplier.cpp
@@ -176,11 +176,11 @@ ECMS_Driver::run (int argc, char* argv[])
}
ACE_CATCH (CORBA::SystemException, sys_ex)
{
- ACE_PRINT_EXCEPTION (sys_ex, "SYS_EX");
+ ACE_PRINT_EXCEPTION (sys_ex, "SYS_EX in Supplier");
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "NON SYS EX");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "NON SYS EX in Supplier");
}
ACE_ENDTRY;
return 0;