#!/bin/sh
# PCP QA Test No. 1314
# exercise pmfstring
# see 1313 for the non-valgrind version
#
# Copyright (c) 2021 Ken McDonell.  All Rights Reserved.
# Copyright (c) 2020 Red Hat.  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!
trap "_cleanup; exit \$status" 0 1 2 3 15

# real QA test starts here
export seq
./1313 --valgrind \
| $PCP_AWK_PROG '
skip == 1 && $1 == "==="       { skip = 0 }
/^=== std err ===/             { skip = 1 }
skip == 0              { print }
skip == 1              { print >>"'$seq_full'" }'

# success, all done
exit
