blob: 4a03922e3d60be36ce3bce0222834d21785c4703 (
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
|
#! /bin/sh
# PCP QA Test No. 097
# check time updates after EOL/SOL in interpolate mode
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard filters
. ./common.product
. ./common.filter
_filterfoo()
{
$PCP_AWK_PROG '
BEGIN { lo[0] = 15; hi[0] = 17
f = 0
}
/^Found/ { if (lo[f] <= $2 && $2 <= hi[f])
print "Found between " lo[f] " and " hi[f] " samples"
else
print $0 " .. no. of samples unexpected"
next
}
{ print }'
}
_filterbigbin()
{
$PCP_AWK_PROG '
BEGIN { lo[0] = 40; hi[0] = 42
f = 0
}
/^Found/ { if (lo[f] <= $2 && $2 <= hi[f])
print "Found between " lo[f] " and " hi[f] " samples"
else
print $0 " .. no. of samples unexpected"
next
}
{ print }'
}
trap "rm -f $tmp.*; exit" 0 1 2 3 15
# real QA test starts here
echo "Archive foo ..."
src/interp4 -a src/foo | _filterfoo
echo
echo "Archive ok-bigbin ..."
src/interp4 -a src/ok-bigbin | _filterbigbin
echo
echo "Archive multi-volume foo ..."
src/interp4 -a src/mv-foo | _filterfoo
echo
echo "Archive multi-volume ok-bigbin ..."
src/interp4 -a src/ok-mv-bigbin | _filterbigbin
|