summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-18 18:26:54 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-18 18:26:54 +0000
commit030d942c23b086b6dde0b4fa5acbcd9f08505f49 (patch)
tree325024895f4f2f1f79d7302845818e146132a974
parent3ddfadf4f04371b803e08120741b6d1b259b0b9d (diff)
downloadATCD-dre_test_01.tar.gz
ChangeLogTag:Sun May 18 18:21:00 UTC 2003 Don Hinton <dhinton@dresystems.com>dre_test_01
-rw-r--r--ChangeLog14
-rw-r--r--tests/RMCast/Makefile.bor3
-rw-r--r--tests/RMCast/tests.mpc12
-rw-r--r--tests/SSL/Makefile2
-rw-r--r--tests/SSL/Makefile.bor3
-rw-r--r--tests/SSL/tests.mpc2
-rw-r--r--tests/tests.mpc259
7 files changed, 284 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 26299d04a88..8d4c26841b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Sun May 18 18:21:00 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * tests/tests.mpc:
+ Added Test_Output library and Main.cpp to all objects.
+
+ * tests/RMCAST/Makefile.bor:
+ * tests/RMCAST/tests.mpc:
+ * tests/SSL/Makefile:
+ * tests/SSL/Makefile.bor:
+ * tests/SSL/tests.mpc:
+ Added Test_Output library to all objects.
+
Sun May 18 17:32:29 UTC 2003 Don Hinton <dhinton@dresystems.com>
* tests/Makefile.bor:
@@ -80,7 +92,7 @@ Sat May 17 19:31:43 UTC 2003 Don Hinton <dhinton@dresystems.com>
Added include of ace/Singleton.h.
* tests/RMCast/Makefile:
- Added -LTest_Output to LDLIBS.
+ Added -lTest_Output to LDLIBS.
* tests/RMCast/RMCast_Fragment_Test.cpp:
* tests/RMCast/RMCast_Membership_Test.cpp:
diff --git a/tests/RMCast/Makefile.bor b/tests/RMCast/Makefile.bor
index 6606e571664..88fa9503c0e 100644
--- a/tests/RMCast/Makefile.bor
+++ b/tests/RMCast/Makefile.bor
@@ -27,7 +27,8 @@ CPPDIR = .;..
LIBFILES = \
$(ACE_LIB) \
- $(ACE_RMCAST_LIB)
+ $(ACE_RMCAST_LIB) \
+ $(BINDIR)\Test_Output$(LIB_DECORATOR).lib
!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/tests/RMCast/tests.mpc b/tests/RMCast/tests.mpc
index 174a06be261..c3a2658d83f 100644
--- a/tests/RMCast/tests.mpc
+++ b/tests/RMCast/tests.mpc
@@ -1,7 +1,7 @@
project(RMCast Fragment Test) : aceexe {
depends += RMCast
exename = RMCast_Fragment_Test
- libs += ACE_RMCast
+ libs += ACE_RMCast Test_Output
Source_Files {
RMCast_Fragment_Test.cpp
@@ -11,7 +11,7 @@ project(RMCast Fragment Test) : aceexe {
project(RMCast Membership Test) : aceexe {
depends += RMCast
exename = RMCast_Membership_Test
- libs += ACE_RMCast
+ libs += ACE_RMCast Test_Output
Source_Files {
RMCast_Membership_Test.cpp
@@ -21,7 +21,7 @@ project(RMCast Membership Test) : aceexe {
project(RMCast Reassembly Test) : aceexe {
depends += RMCast
exename = RMCast_Reassembly_Test
- libs += ACE_RMCast
+ libs += ACE_RMCast Test_Output
Source_Files {
RMCast_Reassembly_Test.cpp
@@ -31,7 +31,7 @@ project(RMCast Reassembly Test) : aceexe {
project(RMCast Reordering Test) : aceexe {
depends += RMCast
exename = RMCast_Reordering_Test
- libs += ACE_RMCast
+ libs += ACE_RMCast Test_Output
Source_Files {
RMCast_Reordering_Test.cpp
@@ -41,7 +41,7 @@ project(RMCast Reordering Test) : aceexe {
project(RMCast Retransmission Test) : aceexe {
depends += RMCast
exename = RMCast_Retransmission_Test
- libs += ACE_RMCast
+ libs += ACE_RMCast Test_Output
Source_Files {
RMCast_Retransmission_Test.cpp
@@ -51,7 +51,7 @@ project(RMCast Retransmission Test) : aceexe {
project(RMCast UDP Best Effort Test) : aceexe {
depends += RMCast
exename = RMCast_UDP_Best_Effort_Test
- libs += ACE_RMCast
+ libs += ACE_RMCast Test_Output
Source_Files {
RMCast_UDP_Best_Effort_Test.cpp
diff --git a/tests/SSL/Makefile b/tests/SSL/Makefile
index d1828bbbcb9..fce81acae5f 100644
--- a/tests/SSL/Makefile
+++ b/tests/SSL/Makefile
@@ -12,7 +12,7 @@
BIN = Thread_Pool_Reactor_SSL_Test
PSRC=$(addsuffix .cpp,$(BIN))
-LDLIBS = -lACE_SSL -lssl -lcrypto
+LDLIBS = -lACE_SSL -lssl -lcrypto -lTest_Output
CPPFLAGS += -I..
#----------------------------------------------------------------------------
diff --git a/tests/SSL/Makefile.bor b/tests/SSL/Makefile.bor
index 1345b6a86c6..d7b161865c9 100644
--- a/tests/SSL/Makefile.bor
+++ b/tests/SSL/Makefile.bor
@@ -18,7 +18,8 @@ CPPDIR = .
LIBFILES = \
$(ACE_LIB) \
$(ACE_SSL_LIB) \
- $(SSL_LIB)
+ $(SSL_LIB) \
+ $(BINDIR)\Test_Output$(LIB_DECORATOR).lib
!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/tests/SSL/tests.mpc b/tests/SSL/tests.mpc
index 005ce019a16..d102e50f39f 100644
--- a/tests/SSL/tests.mpc
+++ b/tests/SSL/tests.mpc
@@ -3,7 +3,7 @@ project(Thread Pool Reactor SSL Test) : aceexe {
requires += ssl
depends += SSL
exename = Thread_Pool_Reactor_SSL_Test
- libs += ACE_SSL
+ libs += ACE_SSL Test_Output
Source_Files {
Thread_Pool_Reactor_SSL_Test.cpp
diff --git a/tests/tests.mpc b/tests/tests.mpc
index e388463cf8e..dac797f6793 100644
--- a/tests/tests.mpc
+++ b/tests/tests.mpc
@@ -1,3 +1,16 @@
+project(Test Output) : acelib {
+ sharedname = Test_Output
+ dllflags = TEST_OUTPUT_BUILD_DLL
+
+ Source_Files {
+ Test_Output.cpp
+ }
+ Header_Files {
+ test_config.h
+ Test_Output_Export.h
+ }
+}
+
project(Framework Component DLL) : acelib {
sharedname = Framework_Component_DLL
dllflags = FRAMEWORK_COMPONENT_DLL_BUILD_DLL
@@ -38,8 +51,10 @@ project(Service Config DLL) : acelib {
project(ACE Test) : aceexe {
exename = ACE_Test
+ libs += Test_Output
Source_Files {
ACE_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -47,8 +62,10 @@ project(ACE Test) : aceexe {
project(Aio Platform Test) : aceexe {
exename = Aio_Platform_Test
+ libs += Test_Output
Source_Files {
Aio_Platform_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -56,8 +73,10 @@ project(Aio Platform Test) : aceexe {
project(Arg Shifter Test) : aceexe {
exename = Arg_Shifter_Test
+ libs += Test_Output
Source_Files {
Arg_Shifter_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -65,8 +84,10 @@ project(Arg Shifter Test) : aceexe {
project(ARGV Test) : aceexe {
exename = ARGV_Test
+ libs += Test_Output
Source_Files {
ARGV_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -74,8 +95,10 @@ project(ARGV Test) : aceexe {
project(Atomic Op Test) : aceexe {
exename = Atomic_Op_Test
+ libs += Test_Output
Source_Files {
Atomic_Op_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -83,8 +106,10 @@ project(Atomic Op Test) : aceexe {
project(Auto IncDec Test) : aceexe {
exename = Auto_IncDec_Test
+ libs += Test_Output
Source_Files {
Auto_IncDec_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -92,8 +117,10 @@ project(Auto IncDec Test) : aceexe {
project(Barrier Test) : aceexe {
exename = Barrier_Test
+ libs += Test_Output
Source_Files {
Barrier_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -101,8 +128,10 @@ project(Barrier Test) : aceexe {
project(Basic Types Test) : aceexe {
exename = Basic_Types_Test
+ libs += Test_Output
Source_Files {
Basic_Types_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -110,8 +139,10 @@ project(Basic Types Test) : aceexe {
project(Bound Ptr Test) : aceexe {
exename = Bound_Ptr_Test
+ libs += Test_Output
Source_Files {
Bound_Ptr_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -119,8 +150,10 @@ project(Bound Ptr Test) : aceexe {
project(Buffer Stream Test) : aceexe {
exename = Buffer_Stream_Test
+ libs += Test_Output
Source_Files {
Buffer_Stream_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -128,8 +161,10 @@ project(Buffer Stream Test) : aceexe {
project(Cache Map Manager Test) : aceexe {
exename = Cache_Map_Manager_Test
+ libs += Test_Output
Source_Files {
Cache_Map_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -137,8 +172,10 @@ project(Cache Map Manager Test) : aceexe {
project(Cached Accept Conn Test) : aceexe {
exename = Cached_Accept_Conn_Test
+ libs += Test_Output
Source_Files {
Cached_Accept_Conn_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -146,8 +183,10 @@ project(Cached Accept Conn Test) : aceexe {
project(Cached Allocator Test) : aceexe {
exename = Cached_Allocator_Test
+ libs += Test_Output
Source_Files {
Cached_Allocator_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -155,8 +194,10 @@ project(Cached Allocator Test) : aceexe {
project(Cached Conn Test) : aceexe {
exename = Cached_Conn_Test
+ libs += Test_Output
Source_Files {
Cached_Conn_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -164,8 +205,10 @@ project(Cached Conn Test) : aceexe {
project(Capabilities Test) : aceexe {
exename = Capabilities_Test
+ libs += Test_Output
Source_Files {
Capabilities_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -173,9 +216,11 @@ project(Capabilities Test) : aceexe {
project(CDR File Test) : aceexe {
exename = CDR_File_Test
+ libs += Test_Output
Source_Files {
CDR_File_Test.cpp
CE_fostream.cpp
+ Main.cpp
}
Header_Files {
}
@@ -183,8 +228,10 @@ project(CDR File Test) : aceexe {
project(CDR Test) : aceexe {
exename = CDR_Test
+ libs += Test_Output
Source_Files {
CDR_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -192,8 +239,10 @@ project(CDR Test) : aceexe {
project(Collection Test) : aceexe {
exename = Collection_Test
+ libs += Test_Output
Source_Files {
Collection_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -201,8 +250,10 @@ project(Collection Test) : aceexe {
project(Config Test) : aceexe {
exename = Config_Test
+ libs += Test_Output
Source_Files {
Config_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -210,8 +261,10 @@ project(Config Test) : aceexe {
project(Conn Test) : aceexe {
exename = Conn_Test
+ libs += Test_Output
Source_Files {
Conn_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -219,8 +272,10 @@ project(Conn Test) : aceexe {
project(Date Time Test) : aceexe {
exename = Date_Time_Test
+ libs += Test_Output
Source_Files {
Date_Time_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -228,8 +283,10 @@ project(Date Time Test) : aceexe {
project(Dev Poll Reactor Test) : aceexe {
exename = Dev_Poll_Reactor_Test
+ libs += Test_Output
Source_Files {
Dev_Poll_Reactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -237,8 +294,10 @@ project(Dev Poll Reactor Test) : aceexe {
project(Dirent Test) : aceexe {
exename = Dirent_Test
+ libs += Test_Output
Source_Files {
Dirent_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -246,8 +305,10 @@ project(Dirent Test) : aceexe {
project(DLList Test) : aceexe {
exename = DLList_Test
+ libs += Test_Output
Source_Files {
DLList_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -255,8 +316,10 @@ project(DLList Test) : aceexe {
project(DLL Test) : aceexe {
exename = DLL_Test
+ libs += Test_Output
Source_Files {
DLL_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -264,8 +327,10 @@ project(DLL Test) : aceexe {
project(Enum Interfaces Test) : aceexe {
exename = Enum_Interfaces_Test
+ libs += Test_Output
Source_Files {
Enum_Interfaces_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -273,8 +338,10 @@ project(Enum Interfaces Test) : aceexe {
project(Env Value Test) : aceexe {
exename = Env_Value_Test
+ libs += Test_Output
Source_Files {
Env_Value_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -282,8 +349,10 @@ project(Env Value Test) : aceexe {
project(Future Test) : aceexe {
exename = Future_Test
+ libs += Test_Output
Source_Files {
Future_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -291,8 +360,10 @@ project(Future Test) : aceexe {
project(Future Set Test) : aceexe {
exename = Future_Set_Test
+ libs += Test_Output
Source_Files {
Future_Set_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -300,8 +371,10 @@ project(Future Set Test) : aceexe {
project(Get Opt Test) : aceexe {
exename = Get_Opt_Test
+ libs += Test_Output
Source_Files {
Get_Opt_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -309,8 +382,10 @@ project(Get Opt Test) : aceexe {
project(Handle Set Test) : aceexe {
exename = Handle_Set_Test
+ libs += Test_Output
Source_Files {
Handle_Set_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -318,8 +393,10 @@ project(Handle Set Test) : aceexe {
project(High Res Timer Test) : aceexe {
exename = High_Res_Timer_Test
+ libs += Test_Output
Source_Files {
High_Res_Timer_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -327,8 +404,10 @@ project(High Res Timer Test) : aceexe {
project(Hash Map Manager Test) : aceexe {
exename = Hash_Map_Manager_Test
+ libs += Test_Output
Source_Files {
Hash_Map_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -336,8 +415,10 @@ project(Hash Map Manager Test) : aceexe {
project(Hash Map Bucket Iterator Test) : aceexe {
exename = Hash_Map_Bucket_Iterator_Test
+ libs += Test_Output
Source_Files {
Hash_Map_Bucket_Iterator_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -345,8 +426,10 @@ project(Hash Map Bucket Iterator Test) : aceexe {
project(INET Addr Test) : aceexe {
exename = INET_Addr_Test
+ libs += Test_Output
Source_Files {
INET_Addr_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -354,8 +437,10 @@ project(INET Addr Test) : aceexe {
project(IOStream Test) : aceexe {
exename = IOStream_Test
+ libs += Test_Output
Source_Files {
IOStream_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -363,8 +448,10 @@ project(IOStream Test) : aceexe {
project(Lazy Map Manager Test) : aceexe {
exename = Lazy_Map_Manager_Test
+ libs += Test_Output
Source_Files {
Lazy_Map_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -372,8 +459,10 @@ project(Lazy Map Manager Test) : aceexe {
project(Log Msg Test) : aceexe {
exename = Log_Msg_Test
+ libs += Test_Output
Source_Files {
Log_Msg_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -381,8 +470,10 @@ project(Log Msg Test) : aceexe {
project(Logging Strategy Test) : aceexe {
exename = Logging_Strategy_Test
+ libs += Test_Output
Source_Files {
Logging_Strategy_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -390,8 +481,10 @@ project(Logging Strategy Test) : aceexe {
project(Malloc Test) : aceexe {
exename = Malloc_Test
+ libs += Test_Output
Source_Files {
Malloc_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -399,8 +492,10 @@ project(Malloc Test) : aceexe {
project(Map Test) : aceexe {
exename = Map_Test
+ libs += Test_Output
Source_Files {
Map_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -408,8 +503,10 @@ project(Map Test) : aceexe {
project(Map Manager Test) : aceexe {
exename = Map_Manager_Test
+ libs += Test_Output
Source_Files {
Map_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -417,8 +514,10 @@ project(Map Manager Test) : aceexe {
project(Max Default Port Test) : aceexe {
exename = Max_Default_Port_Test
+ libs += Test_Output
Source_Files {
Max_Default_Port_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -426,8 +525,10 @@ project(Max Default Port Test) : aceexe {
project(MEM Stream Test) : aceexe {
exename = MEM_Stream_Test
+ libs += Test_Output
Source_Files {
MEM_Stream_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -435,8 +536,10 @@ project(MEM Stream Test) : aceexe {
project(Mem Map Test) : aceexe {
exename = Mem_Map_Test
+ libs += Test_Output
Source_Files {
Mem_Map_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -444,8 +547,10 @@ project(Mem Map Test) : aceexe {
project(MM Shared Memory Test) : aceexe {
exename = MM_Shared_Memory_Test
+ libs += Test_Output
Source_Files {
MM_Shared_Memory_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -453,8 +558,10 @@ project(MM Shared Memory Test) : aceexe {
project(MT Reactor Timer Test) : aceexe {
exename = MT_Reactor_Timer_Test
+ libs += Test_Output
Source_Files {
MT_Reactor_Timer_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -462,8 +569,10 @@ project(MT Reactor Timer Test) : aceexe {
project(MT Reactor Upcall Test) : aceexe {
exename = MT_Reactor_Upcall_Test
+ libs += Test_Output
Source_Files {
MT_Reactor_Upcall_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -471,8 +580,10 @@ project(MT Reactor Upcall Test) : aceexe {
project(MT SOCK Test) : aceexe {
exename = MT_SOCK_Test
+ libs += Test_Output
Source_Files {
MT_SOCK_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -480,8 +591,10 @@ project(MT SOCK Test) : aceexe {
project(Message Block Test) : aceexe {
exename = Message_Block_Test
+ libs += Test_Output
Source_Files {
Message_Block_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -489,8 +602,10 @@ project(Message Block Test) : aceexe {
project(Message Queue Test) : aceexe {
exename = Message_Queue_Test
+ libs += Test_Output
Source_Files {
Message_Queue_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -498,8 +613,10 @@ project(Message Queue Test) : aceexe {
project(Message Queue Test Ex) : aceexe {
exename = Message_Queue_Test_Ex
+ libs += Test_Output
Source_Files {
Message_Queue_Test_Ex.cpp
+ Main.cpp
}
Header_Files {
}
@@ -507,8 +624,10 @@ project(Message Queue Test Ex) : aceexe {
project(Message Queue Notifications Test) : aceexe {
exename = Message_Queue_Notifications_Test
+ libs += Test_Output
Source_Files {
Message_Queue_Notifications_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -516,8 +635,10 @@ project(Message Queue Notifications Test) : aceexe {
project(Multicast Test) : aceexe {
exename = Multicast_Test
+ libs += Test_Output
Source_Files {
Multicast_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -525,8 +646,10 @@ project(Multicast Test) : aceexe {
project(Multihomed INET Addr Test) : aceexe {
exename = Multihomed_INET_Addr_Test
+ libs += Test_Output
Source_Files {
Multihomed_INET_Addr_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -534,8 +657,10 @@ project(Multihomed INET Addr Test) : aceexe {
project(New Fail Test) : aceexe {
exename = New_Fail_Test
+ libs += Test_Output
Source_Files {
New_Fail_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -543,8 +668,10 @@ project(New Fail Test) : aceexe {
project(Notify Performance Test) : aceexe {
exename = Notify_Performance_Test
+ libs += Test_Output
Source_Files {
Notify_Performance_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -552,8 +679,10 @@ project(Notify Performance Test) : aceexe {
project(Object Manager Test) : aceexe {
exename = Object_Manager_Test
+ libs += Test_Output
Source_Files {
Object_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -561,8 +690,10 @@ project(Object Manager Test) : aceexe {
project(Obstack Test) : aceexe {
exename = Obstack_Test
+ libs += Test_Output
Source_Files {
Obstack_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -570,8 +701,10 @@ project(Obstack Test) : aceexe {
project(OrdMultiSet Test) : aceexe {
exename = OrdMultiSet_Test
+ libs += Test_Output
Source_Files {
OrdMultiSet_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -579,8 +712,10 @@ project(OrdMultiSet Test) : aceexe {
project(OS Test) : aceexe {
exename = OS_Test
+ libs += Test_Output
Source_Files {
OS_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -588,8 +723,10 @@ project(OS Test) : aceexe {
project(Proactor Scatter Gather Test) : aceexe {
exename = Proactor_Scatter_Gather_Test
+ libs += Test_Output
Source_Files {
Proactor_Scatter_Gather_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -597,8 +734,10 @@ project(Proactor Scatter Gather Test) : aceexe {
project(Proactor Test) : aceexe {
exename = Proactor_Test
+ libs += Test_Output
Source_Files {
Proactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -606,8 +745,10 @@ project(Proactor Test) : aceexe {
project(Proactor Timer Test) : aceexe {
exename = Proactor_Timer_Test
+ libs += Test_Output
Source_Files {
Proactor_Timer_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -615,8 +756,10 @@ project(Proactor Timer Test) : aceexe {
project(Process Mutex Test) : aceexe {
exename = Process_Mutex_Test
+ libs += Test_Output
Source_Files {
Process_Mutex_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -624,8 +767,10 @@ project(Process Mutex Test) : aceexe {
project(Process Strategy Test) : aceexe {
exename = Process_Strategy_Test
+ libs += Test_Output
Source_Files {
Process_Strategy_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -633,8 +778,10 @@ project(Process Strategy Test) : aceexe {
project(Priority Buffer Test) : aceexe {
exename = Priority_Buffer_Test
+ libs += Test_Output
Source_Files {
Priority_Buffer_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -642,8 +789,10 @@ project(Priority Buffer Test) : aceexe {
project(Dynamic Priority Test) : aceexe {
exename = Dynamic_Priority_Test
+ libs += Test_Output
Source_Files {
Dynamic_Priority_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -651,8 +800,10 @@ project(Dynamic Priority Test) : aceexe {
project(Priority Task Test) : aceexe {
exename = Priority_Task_Test
+ libs += Test_Output
Source_Files {
Priority_Task_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -660,8 +811,10 @@ project(Priority Task Test) : aceexe {
project(Priority Reactor Test) : aceexe {
exename = Priority_Reactor_Test
+ libs += Test_Output
Source_Files {
Priority_Reactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -669,8 +822,10 @@ project(Priority Reactor Test) : aceexe {
project(Process Manager Test) : aceexe {
exename = Process_Manager_Test
+ libs += Test_Output
Source_Files {
Process_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -678,8 +833,10 @@ project(Process Manager Test) : aceexe {
project(Pipe Test) : aceexe {
exename = Pipe_Test
+ libs += Test_Output
Source_Files {
Pipe_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -687,8 +844,10 @@ project(Pipe Test) : aceexe {
project(RB Tree Test) : aceexe {
exename = RB_Tree_Test
+ libs += Test_Output
Source_Files {
RB_Tree_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -696,8 +855,10 @@ project(RB Tree Test) : aceexe {
project(Reactors Test) : aceexe {
exename = Reactors_Test
+ libs += Test_Output
Source_Files {
Reactors_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -705,8 +866,10 @@ project(Reactors Test) : aceexe {
project(Reactor Exceptions Test) : aceexe {
exename = Reactor_Exceptions_Test
+ libs += Test_Output
Source_Files {
Reactor_Exceptions_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -714,8 +877,10 @@ project(Reactor Exceptions Test) : aceexe {
project(Reactor Notify Test) : aceexe {
exename = Reactor_Notify_Test
+ libs += Test_Output
Source_Files {
Reactor_Notify_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -723,8 +888,10 @@ project(Reactor Notify Test) : aceexe {
project(Reactor Dispatch Order Test) : aceexe {
exename = Reactor_Dispatch_Order_Test
+ libs += Test_Output
Source_Files {
Reactor_Dispatch_Order_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -732,8 +899,10 @@ project(Reactor Dispatch Order Test) : aceexe {
project(Reactor Performance Test) : aceexe {
exename = Reactor_Performance_Test
+ libs += Test_Output
Source_Files {
Reactor_Performance_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -741,8 +910,10 @@ project(Reactor Performance Test) : aceexe {
project(Reactor Timer Test) : aceexe {
exename = Reactor_Timer_Test
+ libs += Test_Output
Source_Files {
Reactor_Timer_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -750,8 +921,10 @@ project(Reactor Timer Test) : aceexe {
project(Reader Writer Test) : aceexe {
exename = Reader_Writer_Test
+ libs += Test_Output
Source_Files {
Reader_Writer_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -759,8 +932,10 @@ project(Reader Writer Test) : aceexe {
project(Recursive Condition Test) : aceexe {
exename = Recursive_Condition_Test
+ libs += Test_Output
Source_Files {
Recursive_Condition_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -768,8 +943,10 @@ project(Recursive Condition Test) : aceexe {
project(Recursive Condition Bug Test) : aceexe {
exename = Recursive_Condition_Bug_Test
+ libs += Test_Output
Source_Files {
Recursive_Condition_Bug_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -777,8 +954,10 @@ project(Recursive Condition Bug Test) : aceexe {
project(Recursive Mutex Test) : aceexe {
exename = Recursive_Mutex_Test
+ libs += Test_Output
Source_Files {
Recursive_Mutex_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -786,8 +965,10 @@ project(Recursive Mutex Test) : aceexe {
project(Refcounted Auto Ptr Test) : aceexe {
exename = Refcounted_Auto_Ptr_Test
+ libs += Test_Output
Source_Files {
Refcounted_Auto_Ptr_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -795,8 +976,10 @@ project(Refcounted Auto Ptr Test) : aceexe {
project(Reverse Lock Test) : aceexe {
exename = Reverse_Lock_Test
+ libs += Test_Output
Source_Files {
Reverse_Lock_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -804,8 +987,10 @@ project(Reverse Lock Test) : aceexe {
project(Semaphore Test) : aceexe {
exename = Semaphore_Test
+ libs += Test_Output
Source_Files {
Semaphore_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -813,8 +998,10 @@ project(Semaphore Test) : aceexe {
project(Signal Test) : aceexe {
exename = Signal_Test
+ libs += Test_Output
Source_Files {
Signal_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -822,8 +1009,10 @@ project(Signal Test) : aceexe {
project(Sigset Ops Test) : aceexe {
exename = Sigset_Ops_Test
+ libs += Test_Output
Source_Files {
Sigset_Ops_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -831,8 +1020,10 @@ project(Sigset Ops Test) : aceexe {
project(Simple Message Block Test) : aceexe {
exename = Simple_Message_Block_Test
+ libs += Test_Output
Source_Files {
Simple_Message_Block_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -840,8 +1031,10 @@ project(Simple Message Block Test) : aceexe {
project(SOCK Test) : aceexe {
exename = SOCK_Test
+ libs += Test_Output
Source_Files {
SOCK_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -849,8 +1042,10 @@ project(SOCK Test) : aceexe {
project(SOCK Connector Test) : aceexe {
exename = SOCK_Connector_Test
+ libs += Test_Output
Source_Files {
SOCK_Connector_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -858,8 +1053,10 @@ project(SOCK Connector Test) : aceexe {
project(SOCK Send Recv Test) : aceexe {
exename = SOCK_Send_Recv_Test
+ libs += Test_Output
Source_Files {
SOCK_Send_Recv_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -867,8 +1064,10 @@ project(SOCK Send Recv Test) : aceexe {
project(SPIPE Test) : aceexe {
exename = SPIPE_Test
+ libs += Test_Output
Source_Files {
SPIPE_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -876,8 +1075,10 @@ project(SPIPE Test) : aceexe {
project(SString Test) : aceexe {
exename = SString_Test
+ libs += Test_Output
Source_Files {
SString_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -885,8 +1086,10 @@ project(SString Test) : aceexe {
project(SV Shared Memory Test) : aceexe {
exename = SV_Shared_Memory_Test
+ libs += Test_Output
Source_Files {
SV_Shared_Memory_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -894,8 +1097,10 @@ project(SV Shared Memory Test) : aceexe {
project(Svc Handler Test) : aceexe {
exename = Svc_Handler_Test
+ libs += Test_Output
Source_Files {
Svc_Handler_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -903,8 +1108,10 @@ project(Svc Handler Test) : aceexe {
project(Task Test) : aceexe {
exename = Task_Test
+ libs += Test_Output
Source_Files {
Task_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -912,8 +1119,10 @@ project(Task Test) : aceexe {
project(Thread Manager Test) : aceexe {
exename = Thread_Manager_Test
+ libs += Test_Output
Source_Files {
Thread_Manager_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -921,8 +1130,10 @@ project(Thread Manager Test) : aceexe {
project(Thread Mutex Test) : aceexe {
exename = Thread_Mutex_Test
+ libs += Test_Output
Source_Files {
Thread_Mutex_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -930,8 +1141,10 @@ project(Thread Mutex Test) : aceexe {
project(Thread Pool Test) : aceexe {
exename = Thread_Pool_Test
+ libs += Test_Output
Source_Files {
Thread_Pool_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -939,8 +1152,10 @@ project(Thread Pool Test) : aceexe {
project(Timeprobe Test) : aceexe {
exename = Timeprobe_Test
+ libs += Test_Output
Source_Files {
Timeprobe_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -948,8 +1163,10 @@ project(Timeprobe Test) : aceexe {
project(Time Service Test) : aceexe {
exename = Time_Service_Test
+ libs += Test_Output
Source_Files {
Time_Service_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -957,8 +1174,10 @@ project(Time Service Test) : aceexe {
project(Time Value Test) : aceexe {
exename = Time_Value_Test
+ libs += Test_Output
Source_Files {
Time_Value_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -966,8 +1185,10 @@ project(Time Value Test) : aceexe {
project(Timer Queue Test) : aceexe {
exename = Timer_Queue_Test
+ libs += Test_Output
Source_Files {
Timer_Queue_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -975,8 +1196,10 @@ project(Timer Queue Test) : aceexe {
project(Token Strategy Test) : aceexe {
exename = Token_Strategy_Test
+ libs += Test_Output
Source_Files {
Token_Strategy_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -984,8 +1207,10 @@ project(Token Strategy Test) : aceexe {
project(TP Reactor Test) : aceexe {
exename = TP_Reactor_Test
+ libs += Test_Output
Source_Files {
TP_Reactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -993,8 +1218,10 @@ project(TP Reactor Test) : aceexe {
project(TSS Test) : aceexe {
exename = TSS_Test
+ libs += Test_Output
Source_Files {
TSS_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1002,8 +1229,10 @@ project(TSS Test) : aceexe {
project(Vector Test) : aceexe {
exename = Vector_Test
+ libs += Test_Output
Source_Files {
Vector_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1011,8 +1240,10 @@ project(Vector Test) : aceexe {
project(UPIPE SAP Test) : aceexe {
exename = UPIPE_SAP_Test
+ libs += Test_Output
Source_Files {
UPIPE_SAP_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1020,8 +1251,10 @@ project(UPIPE SAP Test) : aceexe {
project(Upgradable RW Test) : aceexe {
exename = Upgradable_RW_Test
+ libs += Test_Output
Source_Files {
Upgradable_RW_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1031,9 +1264,11 @@ project(Naming Test) : aceexe {
exename = Naming_Test
compname = --ace
comps += Other
+ libs += Test_Output
Source_Files {
Naming_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1043,6 +1278,7 @@ project(Thread Pool Reactor Test) : aceexe {
exename = Thread_Pool_Reactor_Test
compname = --ace
comps += Other
+ libs += Test_Output
Source_Files {
Thread_Pool_Reactor_Test.cpp
@@ -1055,9 +1291,11 @@ project(Thread Pool Reactor Resume Test) : aceexe {
exename = Thread_Pool_Reactor_Resume_Test
compname = --ace
comps += Other
+ libs += Test_Output
Source_Files {
Thread_Pool_Reactor_Resume_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1067,9 +1305,11 @@ project(XtReactor Test) : aceexe {
exename = XtReactor_Test
compname = --ace
comps += Other
+ libs += Test_Output
Source_Files {
XtReactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1079,9 +1319,11 @@ project(FlReactor Test) : aceexe {
exename = FlReactor_Test
compname = --ace
comps += Other
+ libs += Test_Output
Source_Files {
FlReactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1091,9 +1333,11 @@ project(TkReactor Test) : aceexe {
exename = TkReactor_Test
compname = --ace
comps += Other
+ libs += Test_Output
Source_Files {
TkReactor_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1103,9 +1347,11 @@ project(Codecs Test) : aceexe {
exename = Codecs_Test
compname = --ace
comps += Codecs
+ libs += Test_Output
Source_Files {
Codecs_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1115,25 +1361,32 @@ project(Tokens Test) : aceexe {
exename = Tokens_Test
compname = --ace
comps += Token
+ libs += Test_Output
Source_Files {
Tokens_Test.cpp
+ Main.cpp
}
Header_Files {
}
}
project(FIFO Test) : aceexe {
+ exename = FIFO_Test
+ libs += Test_Output
Source_Files {
FIFO_Test.cpp
+ Main.cpp
}
Header_Files {
}
}
project(CDR Array Test) : aceexe {
exename = CDR_Array_Test
+ libs += Test_Output
Source_Files {
CDR_Array_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1141,8 +1394,10 @@ project(CDR Array Test) : aceexe {
project(Service Config Test) : aceexe {
exename = Service_Config_Test
+ libs += Test_Output
Source_Files {
Service_Config_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1150,8 +1405,10 @@ project(Service Config Test) : aceexe {
project(Framework Component Test) : aceexe {
exename = Framework_Component_Test
+ libs += Test_Output
Source_Files {
Framework_Component_Test.cpp
+ Main.cpp
}
Header_Files {
}
@@ -1159,8 +1416,10 @@ project(Framework Component Test) : aceexe {
project(Unbounded Set Ex Test) : aceexe {
exename = Unbounded_Set_Test_Ex
+ libs += Test_Output
Source_Files {
Unbounded_Set_Test_Ex.cpp
+ Main.cpp
}
Header_Files {
}