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
|
#!/bin/sh
# PCP QA Test No. 1956
# Exercise Linux PMDA slabinfo access with -A option.
#
# Copyright (c) 2021 Red Hat.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
[ $PCP_PLATFORM = linux ] || _notrun "Linux-specific memory metric testing"
userid=`id -u` # test exercises procfs access from both root and non-root
[ "$userid" != 0 ] || _notrun "Test cannot be run as privileged root user"
_cleanup()
{
cd $here
_restore_config $PCP_PMCDCONF_PATH
_service pmcd restart 2>&1 | _filter_pcp_restart
_wait_for_pmcd
$sudo rm -rf $tmp $tmp.*
}
status=0 # success is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
# real QA test starts here
_save_config $PCP_PMCDCONF_PATH
# append -A option to the pmdalinux line
$sudo sed -i -e '/^\(linux.*pmdalinux.*\)$/s//\1 -A/' $PCP_PMCDCONF_PATH
if ! _service pmcd restart 2>&1; then _exit 1; fi | _filter_pcp_restart
_wait_for_pmcd || _exit 1
# check access, stash for later
echo == pminfo >> $seq_full
pminfo -f mem.slabinfo >> $seq_full
# check access, reflect to output
echo == pmprobe >> $seq_full
pmprobe mem.slabinfo | tee -a $seq_full | $PCP_AWK_PROG '
$2 >= 1 { print $1, "values" }
$2 <= 0 { print $1, "no values" }'
# success, all done
exit
|