/var/lib/pcp/testsuite/538 is in pcp-testsuite 3.8.12ubuntu1.
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 | #! /bin/sh
# PCP QA Test No. 538
# check pmie atexit problem
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# create our own tmpdir to ensure we can write to it
tmpdir=/tmp/$seq.$$
rm -rf $tmpdir
mkdir -p $tmpdir/pmlogger
export PCP_TMP_DIR=$tmpdir
# get standard environment, filters and checks
. ./common.product
. ./common.filter
_cleanup()
{
rm -fr $tmpdir
pmstore sample.write_me 2 >/dev/null # reset value
}
tmp=$tmpdir/$$
signal=$PCP_BINADM_DIR/pmsignal
status=1 # failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
username=`id -u -n`
sync
pmstore sample.write_me 2 >/dev/null # initialise value
cat <<End-of-File >$tmp.conf
( sample.write_me != 2 ) -> shell "echo sample.write_me changed 1>&2" " %v != 2";
End-of-File
# real QA test starts here
pmieopts="-b"
id pcp >/dev/null 2>&1 && pmieopts="$pmieopts -U $username"
pmie -t 0.5sec $pmieopts -l $tmp.out $tmp.conf &
pid=$!
sleep 2
pmstore sample.write_me 5 >/dev/null
sleep 2
echo
echo "PMIE IS RUNNING"
echo "=== check data file still exists..."
[ ! -f $PCP_TMP_DIR/pmie/$pid ] && echo "urk, data file has vanished!"
echo "=== check log file after first exit..."
_filter_pmie_log < $tmp.out | uniq
$signal -s TERM $pid
wait
echo
echo "PMIE HAS NOW EXITED"
echo
echo "=== check data file has gone..."
[ -f $PCP_TMP_DIR/pmie/$pid ] && echo "urk, data file is still there!"
echo "=== check log file after real exit..."
cp $tmp.out $seq.full
# $PCP_AWK_PROG filter filters out repeated messages from pmie - including the
# odd one that occurs after or between the termination messages
_filter_pmie_log < $tmp.out \
| $PCP_AWK_PROG '
/write_me/ { if ($0 != before) print
before=$0
next
}
{ print }
'
# success, all done
status=0
exit
|