summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-01-15 19:48:17 +0000
committerjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-01-15 19:48:17 +0000
commit10f5796d6f30d32a754acf240774db7faae4a8ff (patch)
tree5fdc65143b456a137e9dab7b1c4a0113d1a8f764
parent9bf87617421eedcad3de918b77a71bff62b8de34 (diff)
downloadATCD-10f5796d6f30d32a754acf240774db7faae4a8ff.tar.gz
ChangeLogTag: Tue Jan 15 19:49:31 UTC 2008 Ciju John <johnc at ociweb dot com>
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/tests/Bug_3193_Regression/test_i.cpp6
-rw-r--r--TAO/tests/Bug_3193_Regression/test_i.h6
3 files changed, 10 insertions, 8 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index b8511eed88e..9630577bd58 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Tue Jan 15 19:49:31 UTC 2008 Ciju John <johnc at ociweb dot com>
+
+ * tests/Bug_3193_Regression/test_i.h:
+ * tests/Bug_3193_Regression/test_i.cpp:
+ Remove Fuzz build errors.
+
Tue Jan 15 19:05:12 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
diff --git a/TAO/tests/Bug_3193_Regression/test_i.cpp b/TAO/tests/Bug_3193_Regression/test_i.cpp
index 600a382a665..e532731a663 100644
--- a/TAO/tests/Bug_3193_Regression/test_i.cpp
+++ b/TAO/tests/Bug_3193_Regression/test_i.cpp
@@ -17,9 +17,8 @@ Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb)
}
void
-Simple_Server_i::echo (CORBA::Long x,
- CORBA::Long msecs, const char* msg)
- ACE_THROW_SPEC ((CORBA::SystemException))
+Simple_Server_i::echo (CORBA::Long ,
+ CORBA::Long msecs, const char* )
{
ACE_Time_Value tv;
tv.msec (msecs);
@@ -29,7 +28,6 @@ Simple_Server_i::echo (CORBA::Long x,
void
Simple_Server_i::shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"server (%P) Received shutdown request from client\n"));
diff --git a/TAO/tests/Bug_3193_Regression/test_i.h b/TAO/tests/Bug_3193_Regression/test_i.h
index 38b53f26b6a..2468e14267e 100644
--- a/TAO/tests/Bug_3193_Regression/test_i.h
+++ b/TAO/tests/Bug_3193_Regression/test_i.h
@@ -32,10 +32,8 @@ public:
// = The Simple_Server methods.
void echo (CORBA::Long x,
- CORBA::Long msecs, const char* msg)
- ACE_THROW_SPEC ((CORBA::SystemException));
- void shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Long msecs, const char* msg);
+ void shutdown (void);
private:
CORBA::ORB_var orb_;