summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-08-13 14:14:56 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-08-13 14:14:56 +0000
commit2353caef03ef8e738af2e9481234902c1e4028d5 (patch)
tree731cb10a33c0665aff9095c0241d7198e30f1791
parentaf7665a5e62b646255e09d68ac38fea9b8367be7 (diff)
downloadATCD-2353caef03ef8e738af2e9481234902c1e4028d5.tar.gz
ChangeLogTag: Mon Aug 13 14:16:58 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/orbsvcs/tests/Notify/MC/MonitorControl.mpc2
-rw-r--r--TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp1
-rw-r--r--TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h3
-rw-r--r--TAO/orbsvcs/tests/Notify/MC/test_monitor.cpp8
5 files changed, 14 insertions, 9 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e91bd33e30f..4ce7657892e 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Mon Aug 13 14:16:58 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * orbsvcs/tests/Notify/MC/MonitorControl.mpc:
+ * orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h:
+ * orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp:
+ * orbsvcs/tests/Notify/MC/test_monitor.cpp:
+
+ Removed fuzz errors.
+
Mon Aug 13 12:11:29 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* examples/Event_Comm/notifier.h:
diff --git a/TAO/orbsvcs/tests/Notify/MC/MonitorControl.mpc b/TAO/orbsvcs/tests/Notify/MC/MonitorControl.mpc
index 3d1b7ebcabe..68ece00f571 100644
--- a/TAO/orbsvcs/tests/Notify/MC/MonitorControl.mpc
+++ b/TAO/orbsvcs/tests/Notify/MC/MonitorControl.mpc
@@ -1,3 +1,5 @@
+// $Id$
+
project(*idl): taoidldefaults {
custom_only = 1
}
diff --git a/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp b/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp
index 39f166f97d9..c1cc655481e 100644
--- a/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp
+++ b/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp
@@ -65,7 +65,6 @@ Notify_Structured_Push_Consumer::_connect (
void
Notify_Structured_Push_Consumer::push_structured_event (
const CosNotification::StructuredEvent&)
- ACE_THROW_SPEC ((CORBA::SystemException, CosEventComm::Disconnected))
{
ACE_DEBUG ((LM_DEBUG, "-"));
static const ACE_Time_Value sl (0, 2000);
diff --git a/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h b/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h
index 91dac17f200..0341ce0cb28 100644
--- a/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h
+++ b/TAO/orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h
@@ -30,8 +30,7 @@ public:
void _connect (CosNotifyChannelAdmin::ConsumerAdmin_ptr consumer_admin);
protected:
- void push_structured_event (const CosNotification::StructuredEvent&)
- ACE_THROW_SPEC ((CORBA::SystemException, CosEventComm::Disconnected));
+ void push_structured_event (const CosNotification::StructuredEvent&);
ACE_CString name_;
unsigned int expected_;
diff --git a/TAO/orbsvcs/tests/Notify/MC/test_monitor.cpp b/TAO/orbsvcs/tests/Notify/MC/test_monitor.cpp
index 0ae3b04d6f5..905df5fdc20 100644
--- a/TAO/orbsvcs/tests/Notify/MC/test_monitor.cpp
+++ b/TAO/orbsvcs/tests/Notify/MC/test_monitor.cpp
@@ -13,11 +13,9 @@ public:
: nsm_ (CosNotification::NotificationServiceMonitorControl::_duplicate (nsm)) {
}
- virtual void running (MonitorTestInterface::Which proc)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void running (MonitorTestInterface::Which proc);
- virtual void finished (MonitorTestInterface::Which proc)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void finished (MonitorTestInterface::Which proc);
private:
ACE_CString base_;
@@ -26,7 +24,6 @@ private:
void
MonitorTestInterface_i::running (MonitorTestInterface::Which proc)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_CString str;
CosNotification::NotificationServiceMonitorControl::Data_var data;
@@ -98,7 +95,6 @@ MonitorTestInterface_i::running (MonitorTestInterface::Which proc)
void
MonitorTestInterface_i::finished (MonitorTestInterface::Which proc)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_CString str;
CosNotification::NotificationServiceMonitorControl::Data_var data;