blob: 675b15d165c424073a39342c3e87b19ad90c7d57 (
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
|
#!/bin/sh
# PCP QA Test No. 488
# pmlogrewrite - delete cases
#
# Copyright (c) 2011 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
which pmlogrewrite >/dev/null 2>&1 || _notrun "pmlogrewrite not installed"
status=0 # success is the default!
$sudo rm -rf $tmp.* $seq.full
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
_filter()
{
sed \
-e "s;$tmp;TMP;g" \
-e "s/^\([+-][+-][+-] TMP\...t*\).*/\1/" \
-e '/pmResult dump/s/from .* numpmid/... numpmid/'
}
_cmp()
{
pminfo -a $1 -m >$tmp.in
pminfo -a $2 -m >$tmp.out
echo "--- pmns diffs ---"
diff -u $tmp.in $tmp.out | _filter
pmdumplog -z -a $1 | tee -a $seq.full >$tmp.in
pmdumplog -z -a $2 | tee -a $seq.full >$tmp.out
echo "--- pmdumplog diffs ---"
diff -u $tmp.in $tmp.out | _filter
}
# real QA test starts here
sed -e '/^#/d' <<End-of-File | while read arch_args spec
# archive[|arg1[|arg2[|...]]] spec
# metric delete
src/rattle metric hinv.ncpu { delete }
src/rattle metric hinv.ncpu { delete } metric hinv.ndisk { delete }
src/rattle metric 1.*.* { delete }
src/ace_v2 metric 40.*.* { delete } metric 1.25.* { delete }
src/mirage indom 29.3 { iname "m-00" -> delete inst 33 -> delete }
End-of-File
do
echo | tee -a $seq.full
echo "$spec" >$tmp.config
echo "=== `cat $tmp.config` ===" | tee -a $seq.full
rm -f $tmp.new.*
pmlogrewrite -w -c $tmp.config `echo $arch_args | sed -e 's/|/ /g'` $tmp.new 2>&1 | _filter
if [ -f $tmp.new.0 ]
then
_cmp `echo $arch_args | sed -e 's/|.*//'` $tmp.new
fi
done
# success, all done
exit
|