diff options
author | Steve Huston <shuston@riverace.com> | 2002-01-18 23:52:07 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2002-01-18 23:52:07 +0000 |
commit | 2673dd3c1a43320f05c9a315dd97c4abce73a021 (patch) | |
tree | 6097e4d9c739f6012c272026f4ef3274518d1e0b /tests | |
parent | 8d29f572c1744cdde20bf366be22870697a53a4a (diff) | |
download | ATCD-2673dd3c1a43320f05c9a315dd97c4abce73a021.tar.gz |
ChangeLogTag:Fri Jan 18 16:44:29 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Get_Opt_Test.icc | 15 | ||||
-rw-r--r-- | tests/INET_Addr_Test.icc | 15 | ||||
-rw-r--r-- | tests/tests.icp | 8 |
3 files changed, 38 insertions, 0 deletions
diff --git a/tests/Get_Opt_Test.icc b/tests/Get_Opt_Test.icc new file mode 100644 index 00000000000..a3e18db1fb0 --- /dev/null +++ b/tests/Get_Opt_Test.icc @@ -0,0 +1,15 @@ +// $Id$ + +include "vacpp_setup.icc" +option + link(libSearchPath, platformLibSearchPath), + incl(searchPath, ".."), + link(linkWithMultiThreadLib,yes), + link(debug) + { + target type (exe) "Get_Opt_Test" + { + source type (cpp) "Get_Opt_Test.cpp" + source platformLinkLibs + } + } diff --git a/tests/INET_Addr_Test.icc b/tests/INET_Addr_Test.icc new file mode 100644 index 00000000000..c897cdf43db --- /dev/null +++ b/tests/INET_Addr_Test.icc @@ -0,0 +1,15 @@ +// $Id$ + +include "vacpp_setup.icc" +option + link(libSearchPath, platformLibSearchPath), + incl(searchPath, ".."), + link(linkWithMultiThreadLib,yes), + link(debug) + { + target type (exe) "INET_Addr_Test" + { + source type (cpp) "INET_Addr_Test.cpp" + source platformLinkLibs + } + } diff --git a/tests/tests.icp b/tests/tests.icp index 59dc5d43417..a154ae1a852 100644 --- a/tests/tests.icp +++ b/tests/tests.icp @@ -122,6 +122,10 @@ subproject Future_Test icc "Future_Test.icc", ics "Future_Test.ics" { } +subproject Get_Opt_Test icc "Get_Opt_Test.icc", ics "Get_Opt_Test.ics" +{ +} + subproject Handle_Set_Test icc "Handle_Set_Test.icc", ics "Handle_Set_Test.ics" { } @@ -138,6 +142,10 @@ subproject High_Res_Timer_Test icc "High_Res_Timer_Test.icc", ics "High_Res_Time { } +subproject INET_Addr_Test icc "INET_Addr_Test.icc", ics "INET_Addr_Test.ics" +{ +} + subproject IOStream_Test icc "IOStream_Test.icc", ics "IOStream_Test.ics" { } |