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
|
#!/bin/sh
# PCP QA Test No. 1279
# exercise PCP dbpmda interface
#
# - valgrind version of qa/617
#
# Copyright (c) 2020 Ken McDonell. All Rights Reserved.
#
# check-group-include: dbpmda
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
_check_valgrind
_cleanup()
{
cd $here
$sudo rm -rf $tmp $tmp.*
}
status=0 # success is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
# need to cull the sections from opendso() as these are potential
# leaks in the PMDA, not dbpmda
#
# s-> ... are definitely lost in loss record 47 of 62
# ...
# by ... opendso (or ???<end-of-line> if no symbols)
# ...
# e-> }
#
# also the summary at the end is not useful (we'll get specific issues, if
# any, reported earlier) because of any issues in the DSO PMDA part of the
# test
#
_filter()
{
cat >$tmp.out
$PCP_AWK_PROG <$tmp.out >$tmp.sed '
BEGIN { s = 0; summary = 0 }
/are definitely lost/ { s = NR; dso = 0; next }
s > 0 && /by .* opendso/ { dso = 1; next }
s > 0 && /by .* ???$/ { dso = 1; next }
$1 == "}" && dso == 1 { print s "," NR "d"; next }
/^LEAK SUMMARY/ { s = NR; summary = 1; next }
END { if (summary) print s "," NR "d" }'
sed -f $tmp.sed <$tmp.out
}
# real QA test starts here
export seq
./617 --valgrind 2>&1 \
| _filter
# success, all done
exit
|