/var/lib/pcp/testsuite/295 is in pcp-testsuite 4.0.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | #! /bin/sh
# PCP QA Test No. 295
# verify pmproxy cleans up correctly when clients are terminated
#
# Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
which pmproxy >/dev/null 2>&1 || _notrun "No pmproxy binary installed"
rm -f $seq.full
signal=$PCP_BINADM_DIR/pmsignal
status=0 # success is the default!
username=`id -u -n`
$sudo rm -rf $tmp.*
trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
_cleanup()
{
$sudo $signal -a pmproxy >/dev/null 2>&1
_service pmproxy restart >/dev/null 2>&1
}
_filter_pmproxy()
{
sed \
-e '/^__pmSetSocketIPC: fd=/d' \
-e '/^__pmSetDataIPC:/d' \
-e '/^__pmDataIPC: /d' \
-e '/^IPC table fd/d' \
}
_check()
{
connects=`grep AcceptNewClient $tmp.log | wc -l | sed -e 's/ *//g'`
disconnects=`grep DeleteClient $tmp.log | wc -l | sed -e 's/ *//g'`
difference=$(($connects - $disconnects))
echo "N connects"
echo "N-$difference disconnects"
echo "--- $tmp.log ---" >>$here/$seq.full
cat $tmp.log >>$here/$seq.full
echo "--- end $tmp.log ---" >>$here/$seq.full
}
_service pmproxy stop >/dev/null 2>&1
$sudo $signal -a pmproxy >/dev/null 2>&1
proxyargs="-Dcontext"
id pcp >/dev/null 2>&1 && proxyargs="$proxyargs -U $username"
$PCP_BINADM_DIR/pmproxy $proxyargs -l $tmp.log 2>&1 | _filter_pmproxy
PMPROXY_HOST=localhost
export PMPROXY_HOST
# real QA test starts here
pidlist=`sh -c "pmval -h $PMPROXY_HOST hinv.ncpu >$tmp.1 2>&1 & echo \\\$!"`
echo "pmval pid=$pidlist" >>$here/$seq.full
pid=`sh -c "pmstat -h $PMPROXY_HOST >$tmp.2 2>&1 & echo \\\$!"`
echo "pmstat pid=$pid" >>$here/$seq.full
pidlist="$pidlist $pid"
echo "kernel.all.load;" >$tmp.in
pid=`sh -c "pmie -v -h $PMPROXY_HOST -c $tmp.in >$tmp.3 2>&1 & echo \\\$!"`
echo "pmie pid=$pid" >>$here/$seq.full
pidlist="$pidlist $pid"
sleep 3
echo all clients started
echo "expect N connects and N-3 disconnect, thanks to pmie"
_check
for pid in $pidlist
do
echo
echo "kill off a client ..."
echo "kill off client pid=$pid" >>$here/$seq.full
$signal -s KILL $pid
sleep 1
_check
done
echo "pmval output ..." >>$here/$seq.full
cat $tmp.1 >>$here/$seq.full
echo >>$here/$seq.full
echo "pmstat output ..." >>$here/$seq.full
cat $tmp.2 >>$here/$seq.full
echo >>$here/$seq.full
echo "pmie output ..." >>$here/$seq.full
cat $tmp.3 >>$here/$seq.full
# success, all done
exit
|