#!/bin/sh
# PCP QA Test No. 1279
# exercise PCP dbpmda interface
#
# - valgrind version of qa/617
#
# Copyright (c) 2020 Ken McDonell.  All Rights Reserved.
#

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!
$sudo rm -rf $tmp $tmp.* $seq.full
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
