#!/bin/sh
# PCP QA Test No. 596
# pmlogextract with prologue-epilogue heuristic
#
# Copyright (c) 2017 Ken McDonell.  All Rights Reserved.
#

seq=`basename $0`
echo "QA output created by $seq"

# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check

_cleanup()
{
    cd $here
    $sudo rm -rf $tmp $tmp.*
}

status=1	# failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15

# real QA test starts here
pmlogextract archives/mark_no_mark_?.0 $tmp
pmdumplog -z -M $tmp pmcd.pid pmcd.seqnum

echo
echo "=== with -m (old style) ==="
rm -f $tmp.0 $tmp.meta $tmp.index
pmlogextract -m archives/mark_no_mark_?.0 $tmp
pmdumplog -z -M $tmp pmcd.pid pmcd.seqnum

# success, all done
status=0
exit
