summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-05-03 11:48:55 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-05-03 11:48:55 +0000
commitff9eb84b15e74ead94f6a1fccec2256909b6a7c2 (patch)
tree73534edb00e5e9ccefb4d07a78c3d2873c4ca240
parent5cc70e823246721ad580d6e87fe8e4b319a3b0cc (diff)
downloadATCD-ff9eb84b15e74ead94f6a1fccec2256909b6a7c2.tar.gz
ChangeLogTag: Fri May 3 06:47:23 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--tests/Dev_Poll_Reactor_Test.cpp13
4 files changed, 34 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0041ab4f902..255de91c006 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri May 3 06:47:23 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Dev_Poll_Reactor_Test.cpp:
+
+ Add a conditional main for when ACE_HAS_DEV_POLL and
+ ACE_HAS_EVENT_POLL are not defined.
+
Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
* ace/Token.h:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 0041ab4f902..255de91c006 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Fri May 3 06:47:23 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Dev_Poll_Reactor_Test.cpp:
+
+ Add a conditional main for when ACE_HAS_DEV_POLL and
+ ACE_HAS_EVENT_POLL are not defined.
+
Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
* ace/Token.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 0041ab4f902..255de91c006 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Fri May 3 06:47:23 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Dev_Poll_Reactor_Test.cpp:
+
+ Add a conditional main for when ACE_HAS_DEV_POLL and
+ ACE_HAS_EVENT_POLL are not defined.
+
Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
* ace/Token.h:
diff --git a/tests/Dev_Poll_Reactor_Test.cpp b/tests/Dev_Poll_Reactor_Test.cpp
index c4319078ec8..4670a275657 100644
--- a/tests/Dev_Poll_Reactor_Test.cpp
+++ b/tests/Dev_Poll_Reactor_Test.cpp
@@ -605,4 +605,17 @@ template class ACE_Map_Iterator<ACE_HANDLE, ACE_Svc_Tuple<Client> *, ACE_SYNCH_R
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
+#else
+
+int
+main (int, ACE_TCHAR *[])
+{
+ ACE_START_TEST (ACE_TEXT ("Dev_Poll_Reactor_Test"));
+ ACE_ERROR ((LM_INFO,
+ ACE_TEXT ("Dev Poll and Event Poll are not supported")
+ ACE_TEXT ("on this platform\n")));
+ ACE_END_TEST;
+ return 0;
+}
+
#endif /* ACE_HAS_DEV_POLL || ACE_HAS_EVENT_POLL */