blob: 3ee80929039a72c7033356f0af581396bafbdf2a [file] [log] [blame]
#!/bin/sh
# @@@ START COPYRIGHT @@@
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# @@@ END COPYRIGHT @@@
if [ $# -lt 2 ]; then
echo "goshellcp <cli> <srv>"
exit 1
fi
xclient=$1
xserver=$2
shift
shift
maxcp=1
if [ "$1" = "-maxcp" ]; then
shift
maxcp=$1
shift
fi
event=0
if [ "$1" = "-event" ]; then
shift
event=1
type="type tse"
fi
nocheck=0
if [ "$1" = "-nocheck" ]; then
shift
nocheck=1
fi
maxes="-maxcp $maxcp"
# setup
. ./gosetup
echo "********* TEST `date` $xclient/$xserver *********"
tcheck -setup
. ./goshellsetup
echo "node" >> $TMP
echo "! Start the monitor processes across the cluster" >> $TMP
echo "startup" >> $TMP
echo "! Start the test server" >> $TMP
echo "exec {nowait,name \$SRV} $xserver -server $*" >> $TMP
echo "! Display process status of our processes" >> $TMP
echo "ps" >> $TMP
echo "! Start the client process" >> $TMP
n=0
while [[ $n -lt $maxcp ]]; do
echo "exec {$type nowait,name \$CLI$n} $xclient -client $*" >> $TMP
n=`expr $n + 1`
done
if [ $event = 1 ]; then
echo "delay 5" >> $TMP
echo "event {TSE} 1" >> $TMP
fi
echo "! Display process status to see new processes" >> $TMP
echo "ps" >> $TMP
echo "! Wait for our processes to stop, then stop the monitor processes and exit." >> $TMP
echo "wait \$SRV} $xserver -server $*" >> $TMP
n=0
while [[ $n -lt $maxcp ]]; do
echo "wait \$CLI$n" >> $TMP
n=`expr $n + 1`
done
echo "shutdown" >> $TMP
echo "exit" >> $TMP
. ./goshellfilter
if [ $nocheck = 0 ]; then
tcheck $xclient
fi