diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-11-11 20:24:43 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-11-11 20:24:43 +0000 |
commit | ec364532e11919373a17dc661821df3b350fa271 (patch) | |
tree | dac391cb14867111923c6e58133c11cd66c6b725 | |
parent | c0557dea2563f895d0c1597fa7a6a890973bf208 (diff) | |
download | ATCD-ec364532e11919373a17dc661821df3b350fa271.tar.gz |
Forgot to totally get rid of the ORB port stuff.
-rwxr-xr-x | TAO/tests/NestedUpcall/Triangle_Test/run_test.pl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl b/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl index f3846874ffc..c0dcaba5cbf 100755 --- a/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl +++ b/TAO/tests/NestedUpcall/Triangle_Test/run_test.pl @@ -16,18 +16,15 @@ unlink $ior1file; unlink $ior2file; $SV1 = Process::Create ($EXEPREFIX."server_A".$Process::EXE_EXT, - " -ORBport $server1_port -o $ior1file ". - " -ORBobjrefstyle url"); + "-o $ior1file -ORBobjrefstyle url"); $SV2 = Process::Create ($EXEPREFIX."server_B".$Process::EXE_EXT, - " -ORBport $server2_port -o $ior2file ". - " -ORBobjrefstyle url"); + "-o $ior2file -ORBobjrefstyle url"); ACE::waitforfile ($ior1file); ACE::waitforfile ($ior2file); $status = system ($EXEPREFIX."initiator".$Process::EXE_EXT. - " -ORBport $client_port ". " -f $ior1file -g $ior2file"); $SV1->Kill (); $SV1->Wait (); |