/var/lib/pcp/testsuite/029 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 | #! /bin/sh
# PCP QA Test No. 029
# pmTrimNameSpace() exerciser
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
# Note that pmTrimNameSpace would not be used much any
# more since pcp2.0 with pmns in archives.
# However, still provided in API.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
trap "rm -f $tmp.*; exit" 0 1 2 3 15
#
# Get rid of some new sample metrics which
# would make the test vary.
# Can do this since the point of the test is
# testing out pmTrimNameSpace
# --tes
#
_filter()
{
sed \
-e '/sample\.dynamic/d' \
-e '/sample\.many/d' \
-e '/sample\.bigid/d' \
-e '/sample\.byte_/d' \
-e '/sample\.kbyte_/d' \
-e '/sample\.datasize/d' \
-e '/sample\.darkness/d' \
-e '/sample\.secret/d' \
}
# real QA test starts here
pmdumplog -d src/foo | _sort_pmdumplog_d
echo ""
src/chktrim src/foo | _filter \
| LC_COLLATE=POSIX sort
|