/var/lib/pcp/testsuite/166 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 | #! /bin/sh
# PCP QA Test No. 166
# pmlogreduce in the presence of mark records
#
# 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 pmlogreduce >/dev/null 2>&1 || "No pmlogreduce binary installed"
_filter()
{
sed -e "s;$tmp;TMP;"
}
status=0 # success is the default!
$sudo rm -rf $tmp.*
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
# real QA test starts here
pmlogreduce -A 1m -t 1m src/reduce-gap $tmp
echo "--- mark records in input archive ---"
pmdumplog -z src/reduce-gap | grep '<mark>'
echo "--- mark records in reduced archive ---"
pmdumplog -z $tmp | grep '<mark>'
for metric in sample.milliseconds sample.drift
do
echo
echo "=== $metric ==="
echo "--- pmval using input archive ---"
pmval -z -A 1m -t 15sec -a src/reduce-gap $metric
if [ $metric = sample.milliseconds ]
then
echo
echo "--- raw pmval using input archive ---"
pmval -r -f 0 -z -A 1m -t 15sec -a src/reduce-gap $metric
fi
echo
echo "--- pmval -U using reduced archive ---"
pmval -z -U $tmp $metric 2>&1 | _filter
if [ $metric = sample.milliseconds ]
then
echo
echo "--- raw pmval -U using reduced archive ---"
pmval -r -f 0 -z -U $tmp $metric 2>&1 | _filter
fi
echo
echo "--- pmval using reduced archive ---"
pmval -z -A 1m -t 15sec -a $tmp $metric 2>&1 | _filter
if [ $metric = sample.milliseconds ]
then
echo
echo "--- raw pmval using reduced archive ---"
pmval -r -f 0 -z -A 1m -t 15sec -a $tmp $metric 2>&1 | _filter
fi
done
# success, all done
exit
|