summaryrefslogtreecommitdiff
path: root/qa/1020
blob: 69842d16c62f3ace00a8bcc364f7d63e26bedcc9 (plain)
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
#!/bin/sh
# PCP QA Test No. 1020
# libqmc dynamic indom testing
#
seq=`basename $0`
echo "QA output created by $seq"
. ./common.qt

[ -x qt/qmc_dynamic/qmc_dynamic ] || _notrun "qmc_dynamic not built or installed"

_cleanup()
{
    if [ ! -f $tmp.done ]
    then
	cd $here/pmdas/dynamic
	$sudo ./Remove >>$here/src/$seq.full
	cd $here
	touch $tmp.done
    fi
}

status=1	# failure is the default!
rm -f $seq.full
trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15

_filter2()
{
    sed -n \
	-e '/^\*\*\*/p' \
	-e '/pmGetPDU/p' \
	-e '/pmXmitPDU/p' \
	-e '/^PMC_/p' \
    | sed \
	-e "s/^\[[0-9]*\]//" \
	-e "s/fd=[0-9]/fd=#/" \
	-e "s/from=[0-9]*/from=###/" \
	-e "s/$host/HOST/" \
	-e "s/id = [0-9]*/id = ##########/" \
	-e "s/ptr = 0x0/ptr = NULL/" \
	-e "s/ptr = 0x[0-9a-f]*/ptr = 0x########/" \
    > $tmp.filtered

    echo
    echo "*** PDUs ***"
    sed -n < $tmp.filtered \
	-e '/pmGetPDU/p' \
	-e '/pmXmitPDU/p' \
    | sed \
	-e "s/ fd=.*//" \
    | LC_COLLATE=POSIX sort \
    | uniq -c \
    | sed -e 's/  */ /g'

    echo "*** Transactions ***" > $seq.full
    echo >> $seq.full
    cat $tmp.filtered >> $seq.full
}

# real QA test starts here
cd $here/pmdas/dynamic
$sudo make >$here/$seq.full 2>&1
$sudo ./Install </dev/null >>$here/$seq.full
cd $here
_check_metric dynamic.numinsts

pmstore dynamic.control.del "-1"
qt/qmc_dynamic/qmc_dynamic -DPDU,PMC,INDOM,OPTFETCH 2>$tmp.stderr \
	| sed -e "s/: Line [0-9][0-9]* /: Line <N> /"
cat $tmp.stderr | _filter2

# success, all done
status=0
exit