summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Redundant_Naming/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Redundant_Naming/run_test.pl')
-rwxr-xr-xTAO/orbsvcs/tests/Redundant_Naming/run_test.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/tests/Redundant_Naming/run_test.pl b/TAO/orbsvcs/tests/Redundant_Naming/run_test.pl
index 849a56c486c..e89dc202e66 100755
--- a/TAO/orbsvcs/tests/Redundant_Naming/run_test.pl
+++ b/TAO/orbsvcs/tests/Redundant_Naming/run_test.pl
@@ -77,12 +77,12 @@ else {
# Run two Naming Servers in redundant mode and one client. Client uses iors
# in files to find the individual copies of the Naming Servers.
-my $args = "-ORBEndPoint $ns_endpoint1 -o $test_iorfile1 -m 0 -r NameService";
+my $args = "-ORBEndPoint $ns_endpoint1 -o $iorfile1 -m 0 -r NameService";
my $prog = "$startdir/../../Naming_Service/tao_cosnaming";
$NS1 = $test->CreateProcess ("$prog", "$args");
-$test->DeleteFile ("iorfile1");
+$test->DeleteFile ($iorfile1);
$NS1->Spawn ();
@@ -98,7 +98,7 @@ $prog = "$startdir/../../Naming_Service/tao_cosnaming";
$NS2 = $test->CreateProcess ("$prog", "$args");
-$test->DeleteFile ("iorfile2");
+$test->DeleteFile ($iorfile2);
$NS2->Spawn ();
@@ -129,7 +129,7 @@ if ($client != 0) {
$NS1->Kill ();
$NS2->Kill ();
-$test->DeleteFile ("iorfile1");
-$test->DeleteFile ("iorfile2");
+$test->DeleteFile ($iorfile1);
+$test->DeleteFile ($iorfile2);
exit $status;