summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/On_Demand_Activation/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/On_Demand_Activation/run_test.pl')
-rwxr-xr-xTAO/examples/POA/On_Demand_Activation/run_test.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/POA/On_Demand_Activation/run_test.pl b/TAO/examples/POA/On_Demand_Activation/run_test.pl
index 6a84c82e153..b0f60b06aae 100755
--- a/TAO/examples/POA/On_Demand_Activation/run_test.pl
+++ b/TAO/examples/POA/On_Demand_Activation/run_test.pl
@@ -57,7 +57,7 @@ $iorfile_2 = $iorfile."_2";
unlink $iorfile_1;
unlink $iorfile_2;
-$SV = Process::Create ($EXEPREFIX."server$Process::EXE_EXT", "-f $iorfile $extra_args");
+$SV = Process::Create ($EXEPREFIX."server$EXE_EXT", "-f $iorfile $extra_args");
if (ACE::waitforfile_timed ($iorfile_1, 5) == -1) {
print STDERR "ERROR: cannot find file <$iorfile_1>\n";
@@ -71,9 +71,9 @@ if (ACE::waitforfile_timed ($iorfile_2, 5) == -1) {
exit 1;
}
-$CL_1 = Process::Create ("../Generic_Servant/client$Process::EXE_EXT ",
+$CL_1 = Process::Create ("../Generic_Servant/client$EXE_EXT ",
"$extra_args $oneway -i $iterations -f $iorfile_1");
-$CL_2 = Process::Create ("../Generic_Servant/client$Process::EXE_EXT ",
+$CL_2 = Process::Create ("../Generic_Servant/client$EXE_EXT ",
"$extra_args $oneway -i $iterations -f $iorfile_2 -x");