summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-19 16:07:50 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-19 16:07:50 +0000
commitc83bf461486a458b2275e5c514d1ecd1f2e0fd09 (patch)
tree2eeccbcf921a787a805c040d1729d9ae26311644
parente71d30d5ee2d448343dc114484ba30cef01fe170 (diff)
downloadATCD-c83bf461486a458b2275e5c514d1ecd1f2e0fd09.tar.gz
ChangeLogTag:Mon May 19 16:08:47 UTC 2003 Don Hinton <dhinton@dresystems.com>
-rw-r--r--ChangeLog20
-rw-r--r--tests/CDR_Test.cpp1
-rw-r--r--tests/MT_Reactor_Upcall_Test.cpp1
-rw-r--r--tests/Pipe_Test.cpp1
-rw-r--r--tests/Process_Mutex_Test.cpp1
-rw-r--r--tests/RB_Tree_Test.cpp1
-rw-r--r--tests/Reactor_Dispatch_Order_Test.cpp1
-rw-r--r--tests/Time_Service_Test.cpp1
8 files changed, 25 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b5897da7878..55c4f60c47a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,28 @@
+Mon May 19 16:08:47 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * tests/CDR_Test.cpp:
+ * tests/MT_Reactor_Upcall_Test.cpp:
+ * tests/Pipe_Test.cpp:
+ * tests/Process_Mutex_Test.cpp:
+ * tests/Reactor_Dispatch_Order_Test.cpp:
+ * tests/Time_Service_Test.cpp:
+ Added include of ace/ACE.h to fix compile problem on AIX. ACE.h
+ was being picked up in ace/String_Base.cpp that's only included
+ when ACE_TEMPLATES_REQUIRE_SOURCE is defined, which AIX doesn't.
+
+ * tests/RB_Tree_Test.cpp:
+ Added include of ace/Synch.h to fix compile problem on AIX
+ similar to the above.
+
Mon May 19 15:14:22 UTC 2003 Don Hinton <dhinton@dresystems.com>
* tests/Test_Output.dsp:
- Changed output location for dll so that other projects can find it.
+ Changed output location for dll so that other projects can find it.
* tests/DLL_Test_Impl.dsp:
* tests/Framework_Component_DLL.dsp:
* tests/Service_Config_DLL.dsp:
- Removed dependency on Test_Output.dll which isn't needed and causes
+ Removed dependency on Test_Output.dll which isn't needed and causes
build failures in the autobuilds since they don't honor the dependencies
in tests.dsw.
diff --git a/tests/CDR_Test.cpp b/tests/CDR_Test.cpp
index 2959a8c69e0..0b027b6cbba 100644
--- a/tests/CDR_Test.cpp
+++ b/tests/CDR_Test.cpp
@@ -23,6 +23,7 @@
#include "ace/Auto_Ptr.h"
#include "ace/CDR_Stream.h"
#include "ace/SString.h"
+#include "ace/ACE.h"
ACE_RCSID(tests, CDR_Test, "$Id$")
diff --git a/tests/MT_Reactor_Upcall_Test.cpp b/tests/MT_Reactor_Upcall_Test.cpp
index c9c3c79f120..71ec9cc5f2b 100644
--- a/tests/MT_Reactor_Upcall_Test.cpp
+++ b/tests/MT_Reactor_Upcall_Test.cpp
@@ -25,6 +25,7 @@
#include "ace/Pipe.h"
#include "ace/Task.h"
#include "ace/Get_Opt.h"
+#include "ace/ACE.h"
ACE_RCSID(tests, MT_Reactor_Upcall_Test, "$Id$")
diff --git a/tests/Pipe_Test.cpp b/tests/Pipe_Test.cpp
index 54567184fc0..188317be335 100644
--- a/tests/Pipe_Test.cpp
+++ b/tests/Pipe_Test.cpp
@@ -20,6 +20,7 @@
#include "ace/Pipe.h"
#include "ace/Process.h"
#include "ace/Get_Opt.h"
+#include "ace/ACE.h"
ACE_RCSID(tests, Pipe_Test, "$Id$")
diff --git a/tests/Process_Mutex_Test.cpp b/tests/Process_Mutex_Test.cpp
index b07462394e7..38623975e06 100644
--- a/tests/Process_Mutex_Test.cpp
+++ b/tests/Process_Mutex_Test.cpp
@@ -21,6 +21,7 @@
#include "ace/Process.h"
#include "ace/Process_Mutex.h"
#include "ace/Get_Opt.h"
+#include "ace/ACE.h"
ACE_RCSID(tests, Process_Mutex_Test, "$Id$")
diff --git a/tests/RB_Tree_Test.cpp b/tests/RB_Tree_Test.cpp
index 915745a8ac4..afdae22f04d 100644
--- a/tests/RB_Tree_Test.cpp
+++ b/tests/RB_Tree_Test.cpp
@@ -29,6 +29,7 @@
#include "test_config.h" /* Include first to enable ACE_ASSERT. */
#include "ace/RB_Tree.h"
#include "ace/SString.h"
+#include "ace/Synch.h"
#include "RB_Tree_Test.h"
diff --git a/tests/Reactor_Dispatch_Order_Test.cpp b/tests/Reactor_Dispatch_Order_Test.cpp
index 043a2978b51..154581a70d5 100644
--- a/tests/Reactor_Dispatch_Order_Test.cpp
+++ b/tests/Reactor_Dispatch_Order_Test.cpp
@@ -22,6 +22,7 @@
#include "ace/Select_Reactor.h"
#include "ace/WFMO_Reactor.h"
#include "ace/Pipe.h"
+#include "ace/ACE.h"
ACE_RCSID(tests, Reactor_Dispatch_Order_Test, "$Id$")
diff --git a/tests/Time_Service_Test.cpp b/tests/Time_Service_Test.cpp
index 9af4858453b..e4d1fd4e158 100644
--- a/tests/Time_Service_Test.cpp
+++ b/tests/Time_Service_Test.cpp
@@ -23,6 +23,7 @@
#include "test_config.h"
#include "ace/Process.h"
+#include "ace/ACE.h"
ACE_RCSID(tests, Time_Service_Test, "$Id$")