File: 039

package info (click to toggle)
pcp 7.0.5-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 252,916 kB
  • sloc: ansic: 1,478,844; sh: 177,285; xml: 160,462; cpp: 83,809; python: 24,349; perl: 18,303; yacc: 6,877; lex: 2,864; makefile: 2,694; awk: 165; fortran: 60; java: 52
file content (64 lines) | stat: -rwxr-xr-x 1,623 bytes parent folder | download
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
#! /bin/sh
# PCP QA Test No. 039
# Can we access archives as they are being created?
#
# 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

_filter()
{
    sed \
        -e '/Performance metrics from host /s/ host .*/ host .../' \
	-e '/commencing/d' \
	-e '/ending/d' \
	-e '/^\[[0-9]* bytes]/d' \
	-e '/value /{
s/value [0-9][0-9]*/value INTEGER/
}' \
	-e '/[0-9][0-9]:[0-9][0-9]:[0-9][0-9]/s/[^ ]*/TIMESTAMP/' \
	-e "/\"$logger_pid\"/s/$logger_pid/LOGGER_PID/g" \
	-e '/pmcd.pmlogger.port/s/value .*/value PORT/' \
	-e '/pmcd.pmlogger.host/s/value ".*/value "HOST"/' \
	-e '/pmcd.pmlogger.archive/s/value ".*/value "PATH"/' \
	-e '/(Log Format Version [0-9][0-9]*)/s/ [23])/ OK)/' \
	-e 's/^			Log Vol/		Log Vol/' \
    | $PCP_AWK_PROG '
$1 == "TIMESTAMP" && NF == 4	{ print "TIMESTAMP       0       OFFSET       OFFSET"; next }
				{ print }' \
    | src/hex2nbo
}

trap "rm -f $tmp.*; exit" 0 1 2 3 15

# real QA test starts here
cat <<End-of-File >$tmp.config
log mandatory on 1500 msec {
    sample.colour
}
End-of-File

sleep 1		# get into sync
pmlogger -c $tmp.config -l $tmp.log -s 4 $tmp &
logger_pid=$!
echo "logger_pid=$logger_pid" >>$seq_full
$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mlogger( |$)' >>$seq_full
sleep 2

echo "Partial, expect meta data"
pmdumplog -id $tmp | _filter

wait
echo ""
echo "Complete, expect meta data and 4 sets of results"
pmdumplog -dilmst $tmp | tee -a $seq_full | _filter

echo ""
echo "pmlogger log"
_filter_pmlogger_log <$tmp.log