Merge branch 'master' of git://git.pcp.io/pcp into qt
[pcp.git] / qa / 089
blob6e6ec01d2f4e4371570115a7375a4a5445388c63
1 #! /bin/sh
2 # PCP QA Test No. 089
3 # interpolate a monotonic increasing value
5 # Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
8 seq=`basename $0`
9 echo "QA output created by $seq"
11 # get standard filters
12 . ./common.product
13 . ./common.filter
15 trap "rm -f $tmp.*; exit" 0 1 2 3 15
17 _filter()
19 sed \
20 -e '/^$/d' \
21 -e '/^[^0-9]/d' \
22 | $PCP_AWK_PROG '
23 $2 <= 0.95 || $2 >= 1.05 { print "oops: " $0; next }
24 { print "rate close to 1" }'
27 # real QA test starts here
29 # get the time of the fifth sample ... we skip the first few to ensure
30 # things have stablized after pmlogger startup
32 first_time=`pmval -U tmparch/bar -s5 sampledso.milliseconds | tail -1 | cut -f1 -d ' '`
34 # there are 70 samples in tmparch/bar, 65 after skipping the first 5 and
35 # the logging interval is 0.1 sec ... so more than enough for the
36 # 485 samples x 0.01 sec needed for pmval
38 pmval -S "@$first_time" -t 0.01 -s 485 -a tmparch/bar sampledso.milliseconds 2>/dev/null | _filter