diff options
author | Steve Huston <shuston@riverace.com> | 2002-02-02 02:13:43 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2002-02-02 02:13:43 +0000 |
commit | 1deaaa4255d4c7b46e3d8619728480eb00a54ef8 (patch) | |
tree | 2efbf83fea20fec2b2c668289619faac98e892c6 /tests | |
parent | 72ba79e22d7ab8c0213617b7cd704a654d58c416 (diff) | |
download | ATCD-1deaaa4255d4c7b46e3d8619728480eb00a54ef8.tar.gz |
ChangeLogTag:Fri Feb 1 21:08:37 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Framework_Component_Test.icc | 15 | ||||
-rw-r--r-- | tests/Vector_Test.icc | 15 | ||||
-rw-r--r-- | tests/tests.icp | 11 |
3 files changed, 41 insertions, 0 deletions
diff --git a/tests/Framework_Component_Test.icc b/tests/Framework_Component_Test.icc new file mode 100644 index 00000000000..cb8caeb442f --- /dev/null +++ b/tests/Framework_Component_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) "Framework_Component_Test" + { + source type (cpp) "Framework_Component_Test.cpp" + source platformLinkLibs + } + } diff --git a/tests/Vector_Test.icc b/tests/Vector_Test.icc new file mode 100644 index 00000000000..464a6a15a14 --- /dev/null +++ b/tests/Vector_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) "Vector_Test" + { + source type (cpp) "Vector_Test.cpp" + source platformLinkLibs + } + } diff --git a/tests/tests.icp b/tests/tests.icp index a154ae1a852..b680944f267 100644 --- a/tests/tests.icp +++ b/tests/tests.icp @@ -114,6 +114,10 @@ subproject FlReactor_Test icc "FlReactor_Test.icc", ics "FlReactor_Test.ics" { } +subproject Framework_Component_Test icc "Framework_Component_Test.icc", ics "Framework_Component_Test.ics" +{ +} + subproject Future_Set_Test icc "Future_Set_Test.icc", ics "Future_Set_Test.ics" { } @@ -422,6 +426,10 @@ subproject Upgradable_RW_Test icc "Upgradable_RW_Test.icc", ics "Upgradable_RW_T { } +subproject Vector_Test icc "Vector_Test.icc", ics "Vector_Test.ics" +{ +} + subproject XtReactor_Test icc "XtReactor_Test.icc", ics "XtReactor_Test.ics" { } @@ -454,6 +462,7 @@ use Dynamic_Priority_Test use Enum_Interfaces_Test use Env_Value_Test use FlReactor_Test +use Framework_Component_Test use Future_Set_Test use Future_Test use Handle_Set_Test @@ -525,4 +534,6 @@ use TkReactor_Test use Tokens_Test use UPIPE_SAP_Test use Upgradable_RW_Test +use Vector_Test +use XtReactor_Test } |