diff options
author | bala <balanatarajan@users.noreply.github.com> | 2003-02-14 14:03:51 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2003-02-14 14:03:51 +0000 |
commit | 312a8f978604801b9046462851102fa1ae42ad32 (patch) | |
tree | 1c617148f44faf8b0f435430894ff1a68168a708 | |
parent | 437dd73e266058439de97459351b7edea89511dd (diff) | |
download | ATCD-312a8f978604801b9046462851102fa1ae42ad32.tar.gz |
ChangeLogTag: Fri Feb 14 09:12:12 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
-rw-r--r-- | TAO/ChangeLog | 16 | ||||
-rwxr-xr-x | TAO/tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl | 3 | ||||
-rw-r--r-- | TAO/tests/RTCORBA/MT_Client_Protocol_Priority/server.conf | 2 | ||||
-rw-r--r-- | TAO/tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf | 2 |
4 files changed, 19 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 29e25a3effb..056a19f62e6 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,7 +1,21 @@ +Fri Feb 14 09:12:12 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu> + + * tests/RTCORBA/MT_Client_Protocol_Priority/client.conf: New file + with the scheduling policy information for the client. + + * tests/RTCORBA/MT_Client_Protocol_Priority/server.conf: Added the + scheduling policy information for the server. + + * tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl: Sript now + use the above configuration files when running the test. + + * tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf: Removed from + the repository. + Fri Feb 14 08:35:14 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu> * examples/RTCORBA/Activity/Activity.cpp: Fixed compile errors in - builds where exceptions have turned off. + builds where exceptions have turned off. Fri Feb 14 12:02:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl> diff --git a/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl b/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl index dbdbe58f65c..1d888e6dd92 100755 --- a/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl +++ b/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl @@ -43,13 +43,14 @@ unlink $iorfile; unlink $data_file; $server_conf = PerlACE::LocalFile ("server$PerlACE::svcconf_ext"); +$client_conf = PerlACE::LocalFile ("client$PerlACE::svcconf_ext"); $server_args = "-o $iorfile -ORBdebuglevel $debug_level -ORBsvcconf $server_conf " ."-ORBendpoint iiop:// -ORBendpoint shmiop:// "; $client_args = - "-o file://$iorfile " + "-ORBSvcConf $client_conf -o file://$iorfile " ."-a $priority1 -b $priority2 -e 1413566210 -f 0 -n $iterations"; $SV = new PerlACE::Process ("server", $server_args); diff --git a/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/server.conf b/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/server.conf index c736cfd6c60..0c178b5c79c 100644 --- a/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/server.conf +++ b/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/server.conf @@ -1,3 +1,5 @@ # $Id$ # dynamic SHMIOP_Factory Service_Object *TAO_Strategies:_make_TAO_SHMIOP_Protocol_Factory () "-MMAPFilePrefix server_shmiop " +# Regular test +static RT_ORB_Loader "-ORBSchedPolicy SCHED_FIFO" diff --git a/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf b/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf deleted file mode 100644 index 37973382e2c..00000000000 --- a/TAO/tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf +++ /dev/null @@ -1,2 +0,0 @@ -# Regular test -static RT_ORB_Loader "-ORBSchedPolicy SCHED_FIFO" |