summaryrefslogtreecommitdiff
path: root/TAO/tests/RTCORBA/Server_Protocol/run_test.pl
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-14 17:39:23 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-14 17:39:23 +0000
commite08d4266e493aadb21226d3025306cfadccc60d2 (patch)
treef23f1bb608ac0c66aab790ffbc8fb020495faa52 /TAO/tests/RTCORBA/Server_Protocol/run_test.pl
parenta7e559bdf163c24ad62c279a9bef6055773d5536 (diff)
downloadATCD-e08d4266e493aadb21226d3025306cfadccc60d2.tar.gz
ChangeLogTag: Tue Nov 14 09:30:36 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'TAO/tests/RTCORBA/Server_Protocol/run_test.pl')
-rwxr-xr-xTAO/tests/RTCORBA/Server_Protocol/run_test.pl23
1 files changed, 18 insertions, 5 deletions
diff --git a/TAO/tests/RTCORBA/Server_Protocol/run_test.pl b/TAO/tests/RTCORBA/Server_Protocol/run_test.pl
index 4d6159a42d4..ea6fd2be7af 100755
--- a/TAO/tests/RTCORBA/Server_Protocol/run_test.pl
+++ b/TAO/tests/RTCORBA/Server_Protocol/run_test.pl
@@ -49,16 +49,23 @@ sub client
("-ORBendpoint iiop://",
"-ORBsvcconf server_reverse.conf "
."-ORBEndpoint uiop:// -ORBendpoint shmiop:// -ORBendpoint iiop://",
+ "-ORBsvcconf server_shmiop.conf -ORBendpoint shmiop://",
"-ORBsvcconf server.conf -ORBEndpoint uiop:// "
." -ORBendpoint shmiop:// -ORBendpoint iiop://"
- ." -p 0");
+ ." -p 1413566208",
+ "-ORBEndpoint uiop:// -ORBendpoint shmiop:// -ORBendpoint iiop://"
+ ." -p 1413566210 -ORBsvcconf server.conf");
@comments = ("* ORB Default Server Protocol Policy Test\n "
."(TAO's default behavior without config files): \n",
"* ORB Default Server Protocol Policy Test\n "
."(All TAO protocols are loaded, but in reverse order): \n",
+ "* ORB Default Server Protocol Policy Test\n "
+ ."(Only SHMIOP loaded): \n",
+ "* Overriding ORB Default Server Protocol Policy in the POA\n"
+ ." (POA Server Protocol set to UIOP only): \n",
"* Overriding ORB Default Server Protocol Policy in the POA\n"
- ." (POA Server Protocol set to IIOP only): \n");
+ ." (POA Server Protocol set to SHMIOP only): \n");
# UIOP only available on Unix. Substitute with alternative tests on Windows.
if ($^O eq "MSWin32")
@@ -66,9 +73,15 @@ if ($^O eq "MSWin32")
@server_opts =
("-ORBendpoint iiop://",
"-ORBsvcconf server_reverse_nt.conf "
- ."-ORBEndpoint shmiop:// -ORBendpoint iiop:// ",
- "-ORBSvcconf server_nt.conf -ORBendpoint shmiop:// "
- ." -ORBendpoint iiop:// -p 0 ");
+ ."-ORBEndpoint shmiop:// -ORBendpoint iiop://",
+ "-ORBsvcconf server_shmiop.conf -ORBendpoint shmiop://",
+ "-ORBSvcconf server_nt.conf -ORBendpoint shmiop:// -ORBendpoint iiop://"
+ ." -p 0",
+ "-ORBSvcconf server_nt.conf -ORBendpoint shmiop:// -ORBendpoint iiop://"
+ ." -p 1413566210");
+ $comments[3] =
+ "Overriding ORB Default Server Protocol Policy in the POA "
+ ."(POA Server Protocol set to IIOP only): \n";
}