/var/lib/pcp/testsuite/654 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 | #! /bin/sh
# PCP QA Test No. 654
# checks basic pmdagfs2 functionality
# Requires GFS2 support in the kernel and gfs2-utils installed,
# else the test will not run.
#
# Copyright (c) 2013 - 2014 Red Hat, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
. ./common.gfs2
# Attempt to set up the gfs2 pmda test enviroment
_gfs2_filesystem_support_tests
_debugfs_mount_tests
# check for any loopback devices, cowardly abort this test if any exist
loopcount=`$sudo losetup -a | wc -l`
[ $loopcount -eq 0 ] || _notrun "System has loop devices already, bailing"
iam=gfs2
status=1 # failure is the default!
trap "_cleanup" 0 1 2 3 15
$sudo rm -fr $tmp.*.dir
$sudo rm -f $tmp.* $seq.full
touch $here/$seq.full
# real QA test starts here
_prepare_pmda_install $iam
_install_pmda | _filter_gfs2
_setup_gfs2_mounts
echo "=== Check for successful install of pmda ===" | tee -a $here/$seq.full
pminfo -v gfs2 > /dev/null || _fail "install failed?"
echo
echo "=== Check that the number of metrics are correct ===" | tee -a $here/$seq.full
[ `_pmcount gfs2` -ge 316 ] || _fail "Too few metrics?"
echo
echo "=== Basic glock stats from all kernels ===" | tee -a $here/$seq.full
pminfo -fdm gfs2.glocks | _gfs2_filter_pminfo
_remove_pmda
status=0
exit
|