/var/lib/pcp/testsuite/common.python is in pcp-testsuite 4.0.1-1.
This file is owned by root:root, with mode 0o644.
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 | #
# Common shell routines for testing python modules
# Copyright (c) 2012-2016 Red Hat.
#
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
python=${PCP_PYTHON_PROG}
[ -n "$python" ] || _notrun "No python interpreter configured in \$PCP_PYTHON_PROG"
eval $python -c exit 2>/dev/null || _notrun "Python interpreter \"$python\" failed"
# verify output from unittest indicates successful testing
_check_unittest()
{
mode=$1
file=$2
$PCP_ECHO_PROG $PCP_ECHO_N "$mode - ""$PCP_ECHO_C"
if grep OK $file
then
return 0
fi
# Give some hint as to what went wrong ...
#
$PCP_AWK_PROG <$file '
$1 == "FAIL:" { want = 1 }
$1 == "File" { want = 1 }
want == 1 && $1 == "Ran" { exit }
want == 1 { print }'
return 1
}
|