/var/lib/pcp/testsuite/750 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | #!/bin/sh
# PCP QA Test No. 750
# Exercise the RPM Package Manager PMDA
#
# Copyright (c) 2013-2014 Red Hat.
#
seq=`basename $0`
echo "QA output created by $seq"
. ./common.rpm
_rpm_support_tests
rm -f $seq.out
if [ $PCP_VER -ge 3811 ]
then
ln $seq.out.3 $seq.out
elif [ $PCP_VER -ge 3810 ]
then
ln $seq.out.2 $seq.out
else
ln $seq.out.1 $seq.out
fi
status=1 # failure is the default!
hostname=`hostname`
$sudo rm -fr $tmp.* $seq.full
trap "_rpm_cleanup" 0 1 2 3 15
filter_pmval()
{
sed \
-e "s/\"$hostname\"/\"BUILDHOST\"/g" \
-e 's/^ [0-9][0-9]* $/ TIMESTAMP /g' \
# end
}
report_package()
{
if [ $PCP_VER -ge 3810 ]; then
inst="$1-$2"
else
inst="$1"
fi
pmsleep 1.1 # time for pmdarpm to complete background refresh
pmval -s 1 rpm.arch -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.buildhost -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.buildtime -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.description -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.epoch -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.group -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.installtime -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.license -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.packager -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.release -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.size -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.sourcerpm -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.summary -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.url -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.vendor -i $inst 2>&1 | filter_pmval | tee -a $seq.full
pmval -s 1 rpm.version -i $inst 2>&1 | filter_pmval | tee -a $seq.full
if [ $PCP_VER -ge 3810 ]; then
pmval -s 1 rpm.name -i $inst 2>&1 | filter_pmval | tee -a $seq.full
fi
}
package_totals_before()
{
[ $PCP_VER -ge 3811 ] || return
pre_bytes=`pmprobe -v rpm.total.bytes | awk '{ print $3 }'`
pre_count=`pmprobe -v rpm.total.count | awk '{ print $3 }'`
}
package_totals_after()
{
[ $PCP_VER -ge 3811 ] || return
post_bytes=`pmprobe -v rpm.total.bytes | awk '{ print $3 }'`
post_count=`pmprobe -v rpm.total.count | awk '{ print $3 }'`
diff_bytes=`expr $post_bytes - $pre_bytes`
echo "bytes diff: $post_bytes - $pre_bytes = $diff_bytes" >> $seq.full
pminfo -f rpm.size >> $seq.full
diff_count=`expr $post_count - $pre_count`
echo "count diff: $post_count - $pre_count = $diff_count" >> $seq.full
echo
if [ $diff_bytes -ge 0 ]
then
echo Total bytes check: OK
else
echo Total bytes check: FAIL - $diff_bytes delta
fi
if [ $diff_count -eq 1 ]
then
echo Total count check: OK
else
echo Total count check: FAIL - $diff_count delta
fi
}
# real QA test starts here
_rpm_pmda_prepare
_rpm_package_prepare
package_totals_before
_rpm_package_install
report_package qaplayer 1.0-1.noarch
package_totals_after
echo "========================================================================"
_rpm_package_remove
report_package qaplayer 1.0-1.noarch
# success, all done
status=0
exit
|