#! /bin/sh
# PCP QA Test No. 133
# Verify log volume switching for pmlc/pmlogger
#
# 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

trap "rm -f $tmp.*; exit" 0 1 2 3 15
signal=$PCP_BINADM_DIR/pmsignal

# real QA test starts here
rm -f $tmp.*
pmlogger -L -c /dev/null -l $tmp.log $tmp >$tmp.err 2>&1 &
pid=$!

sleep 3

pmlc <<End-of-File
connect $pid
log mandatory on 500 msec pmcd.numagents
End-of-File

sleep 2
pmlc <<End-of-File
connect $pid
new volume
End-of-File

sleep 2
pmlc <<End-of-File
connect $pid
new volume
End-of-File

sleep 2
$signal -s HUP $pid
sleep 2
$signal -s HUP $pid

sleep 2
pmlc <<End-of-File
connect $pid
new volume
End-of-File

sleep 2
pmlc <<End-of-File
connect $pid
new volume
End-of-File

sleep 2
$signal -s TERM $pid

wait

_filter_pmlogger_log <$tmp.log
rm -f $tmp.log

nfile=`echo $tmp.* | wc -w | sed -e 's/  *//g'`
echo "Created $nfile log files."
if [ $nfile -ne 10 ]
then
    echo "Expected 10 log files ..."
    ls -l $tmp.*
fi

pmdumplog -t $tmp \
| _filter_pmdumplog \
| $PCP_AWK_PROG '
$1 == "TIMESTAMP" && NF == 4	{ print "TIMESTAMP       " $2 "       OFFSET       OFFSET"; next }
				{ print }'
