summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-12-22 20:13:46 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-12-22 20:13:46 +0000
commit097d137d71e1286719ef9c4248c8de99d77c7979 (patch)
treed44006b29a350d9d1804ca0932a55433ae8b8b2c /TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl
parent1e553ef6690a4da1d8e4bd2469ac8b31a287a269 (diff)
downloadATCD-097d137d71e1286719ef9c4248c8de99d77c7979.tar.gz
ChangeLogTag: Thu Dec 22 14:13:14 2005 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl')
-rwxr-xr-xTAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl17
1 files changed, 13 insertions, 4 deletions
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl
index e61783ae453..e877773b96e 100755
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/run_test.pl
@@ -84,10 +84,19 @@ for ($testid = 1; $testid <= 9; ++$testid)
($client_mode, $server_mode) = get_test_modes($testid);
- my $SV = new PerlACE::Process ("PI_ProcMode_Collocated_Test",
- "-c $client_mode " .
- "-s $server_mode " .
- "-ORBobjrefstyle url");
+ my $SV;
+ if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("PI_ProcMode_Collocated_Test",
+ "-c $client_mode " .
+ "-s $server_mode " .
+ "-ORBobjrefstyle url");
+ }
+ else {
+ $SV = new PerlACE::Process ("PI_ProcMode_Collocated_Test",
+ "-c $client_mode " .
+ "-s $server_mode " .
+ "-ORBobjrefstyle url");
+ }
print STDERR "\n\n==== Starting test variant #$testid\n\n";