summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Triangle_Test/run_test.pl')
-rwxr-xr-xTAO/tests/NestedUpcall/Triangle_Test/run_test.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl b/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl
index 77cb5613288..bf102c41d97 100755
--- a/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl
+++ b/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl
@@ -16,7 +16,7 @@ $ior2file = "serverb.ior";
unlink $ior1file;
unlink $ior2file;
-$SV1 = Process::Create ($EXEPREFIX."server_A".$Process::EXE_EXT,
+$SV1 = Process::Create ($EXEPREFIX."server_A".$EXE_EXT,
"-o $ior1file");
if (ACE::waitforfile_timed ($ior1file, 5) == -1) {
@@ -25,7 +25,7 @@ if (ACE::waitforfile_timed ($ior1file, 5) == -1) {
exit 1;
}
-$SV2 = Process::Create ($EXEPREFIX."server_B".$Process::EXE_EXT,
+$SV2 = Process::Create ($EXEPREFIX."server_B".$EXE_EXT,
"-o $ior2file");
if (ACE::waitforfile_timed ($ior2file, 5) == -1) {
@@ -34,7 +34,7 @@ if (ACE::waitforfile_timed ($ior2file, 5) == -1) {
exit 1;
}
-$CL = Process::Create ($EXEPREFIX."initiator".$Process::EXE_EXT,
+$CL = Process::Create ($EXEPREFIX."initiator".$EXE_EXT,
" -f $ior1file -g $ior2file");
$client = $CL->TimedWait (60);