summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-19 01:39:54 +0000
committermk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-19 01:39:54 +0000
commitd3403c84ad6624c66f3bfbf9d77b7b0d88325e62 (patch)
treef4c48d0420bee3b68b7f2c5c208b783a708d36ff
parent1805eb2130d6c1f07cf314f7fc11fa3265f3bdca (diff)
downloadATCD-d3403c84ad6624c66f3bfbf9d77b7b0d88325e62.tar.gz
ChangeLog entry: Sat Jul 18 20:22:19 1998 Michael Kircher <mk1@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-98c4
-rwxr-xr-xTAO/tests/Quoter/run_test.sh150
2 files changed, 4 insertions, 150 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 7ccd7187d3b..b6cf123d239 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,5 +1,9 @@
Sat Jul 18 20:22:19 1998 Michael Kircher <mk1@cs.wustl.edu>
+ * tests/Quoter/run_test.sh: Removed this file,
+ all the functionality is provided by the
+ run_test.pl script.
+
* tao/Server_Request.{h,cpp}: Added a new constructor,
which does not need an input CDR stream. It is going
to be used for locate requests. When we invoke
diff --git a/TAO/tests/Quoter/run_test.sh b/TAO/tests/Quoter/run_test.sh
deleted file mode 100755
index acf1bb68649..00000000000
--- a/TAO/tests/Quoter/run_test.sh
+++ /dev/null
@@ -1,150 +0,0 @@
-#!/bin/sh
-# $Id$
-
-# =TITLE
-# Restart script
-#
-# =AUTHOR
-# Michael Kircher (mk1@cs.wustl.edu)
-#
-# =DESCRIPTION
-# This script restarts the Naming, Scheduling and Event Service,
-# "clean" if it is specified as a parameter, then the old
-# services are only killed and not restarted
-# "lifecycle" if it is specified as a parameter, then
-# the LifeCycle Service Object is used
-# inbetween to ask the Generic Factory to
-# create an Quoter.
-
-# save the old working dir
-old_dir=`pwd`
-
-#### Get the user name
-if [ "$LOGNAME" ]; then
- #### LOGNAME is preserved across su
- login=$LOGNAME
-else
- #### whoami returns the users login, which changes across su
- login=`whoami`
-fi
-
-# get the user id
-uid=`id | cut -c5-20 | cut -f1 -d"("`
-
-#### Set TAO_ROOT, if it wasn't set.
-if [ ! "$TAO_ROOT" ]; then
- if [ "$ACE_ROOT" ]; then
- TAO_ROOT=$ACE_ROOT/TAO
- else
- echo $0: you must set ACE_ROOT or TAO_ROOT!
- exit 1
- fi
-fi
-
-echo // Killing the old services
-
-if [ `uname -s` = 'SunOS' ]; then
- ps_opts=-ef
-else
- ps_opts=aux
-fi
-
-ps $ps_opts | grep ORBnameserviceior | grep $login | grep -v grep | cut -c10-17 > /tmp/pids$login
-
-if [ -s /tmp/pids$login ]; then
- pids=`cat /tmp/pids$login`
- kill $pids
-fi
-
-
-ps $ps_opts | grep Service | grep $login | grep -v grep | cut -c10-17 > /tmp/pids$login
-
-if [ -s /tmp/pids$login ]; then
- pids=`cat /tmp/pids$login`
- kill $pids
-fi
-
-
-# stop here if "ss clean" was called
-if [ $1 ]; then
- if [ $1 = "clean" ]; then
- exit
- fi
-fi
-
-echo // Initializing the log file
-
-if [ -r /tmp/logfile_$login ]; then
- rm /tmp/logfile_$login
-fi
-
-nameserviceport=`expr 20023 + $uid`
-serverport=`expr 20024 + $uid`
-factoryfinderport=`expr 20025 + $uid`
-# the next port number is an exception, because we have nested call-backs
-genericfactoryport=0 # `expr 20026 + $uid`
-lifecycleserviceport=`expr 20027 + $uid`
-clientport=`expr 20028 + $uid`
-
-cd $TAO_ROOT/orbsvcs/Naming_Service
-./Naming_Service -ORBobjrefstyle URL -ORBport $nameserviceport >> /tmp/logfile_$login 2>&1 &
-
-sleep 2
-
-IOR=`cat /tmp/logfile_$login | grep IOR | cut -c21-300 | cut -f1 -d">" `
-
-echo // The IOR of the Naming Service: $IOR
-
-echo // Started Naming Service on port $nameserviceport
-
-cd $TAO_ROOT/tests/Quoter
-./server -ORBsvcconf server.conf -ORBnameserviceior $IOR -ORBport $serverport >> /tmp/logfile_$login 2>&1 &
-
-echo // Started server on port $serverport
-
-sleep 1
-
-./Factory_Finder -ORBnameserviceior $IOR -ORBport $factoryfinderport >> /tmp/logfile_$login 2>&1 &
-
-
-echo // Started Factory Finder on port $factoryfinderport
-
-if [ $1 ]; then
- if [ $1 = "lifecycle" ]; then
-
- sleep 1
-
- cd ../../orbsvcs/LifeCycle_Service
-
- ./Life_Cycle_Service -ORBnameserviceior $IOR -ORBport $lifecycleserviceport >> /tmp/logfile_$login 2>&1 &
-
- cd $old_dir
-
- echo // Started Life Cycle Service on port $lifecycleserviceport
- sleep 1
-
- ./Generic_Factory -l -ORBnameserviceior $IOR -ORBport $genericfactoryport >> /tmp/logfile_$login 2>&1 &
-
- echo // Started Generic Factory on port $genericfactoryport
- echo // using the LifeCycle Service;
-
- fi
-else
- sleep 1
-
- ./Generic_Factory -ORBnameserviceior $IOR -ORBport $genericfactoryport >> /tmp/logfile_$login 2>&1 &
-
- echo // Started Generic Factory on port $genericfactoryport
-
-fi
-
-echo "// Enjoy the use ;-)"
-echo See what is running:
-echo ..
-ps $ps_opts | grep $login | grep ORBnameserviceior
-echo ..
-echo call the client:
-echo ..
-./client -ORBsvcconf client.conf -ORBnameserviceior $IOR -ORBport $clientport
-
-cd $old_dir