/var/lib/pcp/testsuite/359 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 | #!/bin/sh
# PCP QA Test No. 359
# Simple sanity check that we can get through validation of all
# of the metrics without any surprises
#
# Copyright (c) 2010 Ken McDonell. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
status=0 # success is the default!
$sudo rm -rf $tmp.* $seq.full
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
_filter()
{
sed \
-e '/No value(s) available/d' \
-e '/Metric not supported by this version of monitored application/d' \
-e '/^sample.needprofile:/d' \
-e '/^sample.bad.unknown:/d' \
-e '/^sample.bad.nosupport:/d' \
-e '/^sampledso.needprofile:/d' \
-e '/^sampledso.bad.unknown:/d' \
-e '/^sampledso.bad.nosupport:/d' \
-e '/^proc.schedstat.*: Unknown or .*/d' \
-e '/^proc.schedstat.*: No permission/d' \
-e '/^proc.psinfo.*: No permission/d' \
-e '/^proc.psinfo.cgroups: Unknown or illegal instance identifier/d' \
-e '/^proc.psinfo.labels: Unknown or illegal instance identifier/d' \
-e '/^proc.memory.*: No permission/d' \
-e '/^proc.id.*: No permission/d' \
-e '/^proc.fd.*: No permission/d' \
-e '/^proc.io.*: /d' \
-e '/^logger.perfile.reg.records: No permission/d' \
-e '/^logger.perfile.fifo.records: Try again./d' \
-e '/^logger.perfile.reg.records: Try again./d'
}
# real QA test starts here
echo "First attempt ... expect nothing"
pminfo -v | _filter
echo "Second attempt ... expect nothing"
pminfo -v | _filter
# success, all done
exit
|