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/POA/Etherealization | |
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/POA/Etherealization')
-rwxr-xr-x | TAO/tests/POA/Etherealization/run_test.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/POA/Etherealization/run_test.pl b/TAO/tests/POA/Etherealization/run_test.pl index ab30613b43e..b5adebe1007 100755 --- a/TAO/tests/POA/Etherealization/run_test.pl +++ b/TAO/tests/POA/Etherealization/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 ("Etherealization"); +if (PerlACE::is_vxworks_test()) { + $T = new PerlACE::ProcessVX ("Etherealization"); +} +else { + $T = new PerlACE::Process ("Etherealization"); +} $test = $T->SpawnWaitKill (60); |