diff options
author | gthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-28 15:15:02 +0000 |
---|---|---|
committer | gthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-28 15:15:02 +0000 |
commit | 2a63e7e77b2c2d5b074f07f4dde7f305ad8c1827 (patch) | |
tree | 2b577f11eb2873cdfe2e5598bdbc3dadc49970a5 /tests | |
parent | 090889a8e6e981d538d7d259cae38056395ca0ea (diff) | |
download | ATCD-2a63e7e77b2c2d5b074f07f4dde7f305ad8c1827.tar.gz |
ChangeLogTag: Mon Apr 28 15:15:00 UTC 2003 Gautam Thaker <gthaker@atl.lmco.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 | ||||
-rw-r--r-- | tests/Makefile.bor | 1 | ||||
-rw-r--r-- | tests/Multihomed_INET_Addr_Test.icc | 22 | ||||
-rw-r--r-- | tests/tests.icp | 4 | ||||
-rw-r--r-- | tests/tests.mpc | 9 |
5 files changed, 40 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 3db01970f5e..8d43d159bfd 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -135,6 +135,7 @@ noinst_PROGRAMS = \ Message_Queue_Test \ Message_Queue_Test_Ex \ Multicast_Test \ + Multihomed_INET_Addr_Test \ Notify_Performance_Test \ OS_Test \ Object_Manager_Test \ @@ -328,6 +329,9 @@ Message_Queue_Test_Ex_SOURCES = Message_Queue_Test_Ex.cpp \ Multicast_Test_SOURCES = Multicast_Test.cpp +Multihomed_INET_Addr_Test_SOURCES = Multihomed_INET_Addr_Test.cpp \ + Multihomed_INET_Addr_Test.h + Naming_Test_SOURCES = Naming_Test.cpp Notify_Performance_Test_SOURCES = Notify_Performance_Test.cpp diff --git a/tests/Makefile.bor b/tests/Makefile.bor index 515d3a4ce89..9d9f06aff4a 100644 --- a/tests/Makefile.bor +++ b/tests/Makefile.bor @@ -62,6 +62,7 @@ NAMES = \ MT_Reactor_Upcall_Test \ MT_SOCK_Test \ Multicast_Test \ + Multihomed_INET_Addr_Test \ Naming_Test \ New_Fail_Test \ Notify_Performance_Test \ diff --git a/tests/Multihomed_INET_Addr_Test.icc b/tests/Multihomed_INET_Addr_Test.icc new file mode 100644 index 00000000000..3b4ba8e2851 --- /dev/null +++ b/tests/Multihomed_INET_Addr_Test.icc @@ -0,0 +1,22 @@ +// $Id$ + +include "vacpp_setup.icc" +option + link(libSearchPath, platformLibSearchPath), + incl(searchPath, ".."), + link(linkWithMultiThreadLib,yes), + link(debug) + { + target type (exe) "Multihomed_INET_Addr_Test" + { + source type (cpp) "Multihomed_INET_Addr_Test.cpp" + if ($__IBMCPP__ >= 500) { + option macros(global) { + source type (hpp) "test_config.h" + } + source type (cpp) "test_config.h" + source type (cpp) "../ace/Singleton.cpp" + } + source type (lib) platformLinkLibs + } + } diff --git a/tests/tests.icp b/tests/tests.icp index b33f73b222b..9d592631c25 100644 --- a/tests/tests.icp +++ b/tests/tests.icp @@ -222,6 +222,10 @@ subproject Message_Queue_Test_Ex icc "Message_Queue_Test_Ex.icc", ics "Message_Q { } +subproject Multihomed_INET_Addr_Test icc "Multihomed_INET_Addr_Test.icc", ics "Multihomed_INET_Addr_Test.ics" +{ +} + subproject Naming_Test icc "Naming_Test.icc", ics "Naming_Test.ics" { } diff --git a/tests/tests.mpc b/tests/tests.mpc index 09ee46d48f5..54c4fdcb69c 100644 --- a/tests/tests.mpc +++ b/tests/tests.mpc @@ -523,6 +523,15 @@ project(Multicast Test) : aceexe { } } +project(Multihomed INET Addr Test) : aceexe { + exename = Multihomed_INET_Addr_Test + Source_Files { + Multihomed_INET_Addr_Test.cpp + } + Header_Files { + } +} + project(New Fail Test) : aceexe { exename = New_Fail_Test Source_Files { |