pmrep: update TODO, man page
[pcp.git] / qa / 768
blob0093fc491ba3599ec94354487ea8b828481c0989
1 #!/bin/sh
2 # PCP QA Test No. 768
3 # pmlogextract bug - reported by Tom Yearke
5 # Copyright (c) 2013 Ken McDonell, Tom Yearke. All Rights Reserved.
8 # get standard filters
9 . ./common.product
10 . ./common.filter
11 . ./common.check
13 seq=`basename $0`
15 [ $PCP_VER -lt 30809 ] && _notrun "pmlogextract fix in PCP 3.8.9"
17 echo "QA output created by $seq"
19 status=1 # failure is the default!
20 $sudo rm -rf $tmp.* $seq.full
21 trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15
23 # real QA test starts here
24 pmlogextract -Z UTC -S "@ Nov 27 15:52:30" -T "@ Nov 27 15:54:30" archives/node_archive $tmp
26 pmdumplog -a -Z UTC $tmp
28 # success, all done
29 status=0
31 exit