diff options
author | mcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-04-15 12:33:21 +0000 |
---|---|---|
committer | mcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-04-15 12:33:21 +0000 |
commit | c3461273c5327fd4e9b860cb97cfa1e6229254d9 (patch) | |
tree | 850914d64f56066ff79de721f17a121577d97b63 /TAO/tests/Collocation_Opportunities | |
parent | e4460b64f5c3184ff70ff94c003c1d4cf00a578e (diff) | |
download | ATCD-c3461273c5327fd4e9b860cb97cfa1e6229254d9.tar.gz |
ChangeLogTag: Fri Apr 15 12:30:12 UTC 2005 Martin Corino <mcorino@remedy.nl>
Diffstat (limited to 'TAO/tests/Collocation_Opportunities')
-rwxr-xr-x | TAO/tests/Collocation_Opportunities/run_test.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Collocation_Opportunities/run_test.pl b/TAO/tests/Collocation_Opportunities/run_test.pl index 8a8528f903e..bb3e5277ea9 100755 --- a/TAO/tests/Collocation_Opportunities/run_test.pl +++ b/TAO/tests/Collocation_Opportunities/run_test.pl @@ -8,7 +8,12 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' use lib '../../../bin'; use PerlACE::Run_Test; -$T = new PerlACE::Process ("Collocation_Opportunities"); +if (PerlACE::is_vxworks_test()) { + $T = new PerlACE::ProcessVX ("Collocation_Opportunities"); +} +else { + $T = new PerlACE::Process ("Collocation_Opportunities"); +} $test = $T->SpawnWaitKill (60); |