summaryrefslogtreecommitdiff
path: root/TAO/tests/Codec/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Codec/run_test.pl')
-rwxr-xr-xTAO/tests/Codec/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Codec/run_test.pl b/TAO/tests/Codec/run_test.pl
index 16c1b3ddd8f..957553ed86a 100755
--- a/TAO/tests/Codec/run_test.pl
+++ b/TAO/tests/Codec/run_test.pl
@@ -10,7 +10,12 @@ use PerlACE::Run_Test;
print STDERR "\n\n==== Running Codec test\n";
-$T = new PerlACE::Process ("client");
+if (PerlACE::is_vxworks_test()) {
+ $T = new PerlACE::ProcessVX ("client");
+}
+else {
+ $T = new PerlACE::Process ("client");
+}
$test = $T->SpawnWaitKill (15);