#!/bin/sh
# PCP QA Test No. 1973
# Exercise various pcp-zoneinfo(1) command options.
#
# Copyright (c) 2023 Oracle and/or its affiliates.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#

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

. ./common.python

status=1        # failure is the default!
trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15

pcp_zoneinfo="$PCP_BINADM_DIR/pcp-zoneinfo"
test -x $pcp_zoneinfo || _notrun "No pcp-zoneinfo(1) installed"
pcp_zoneinfo="$python $pcp_zoneinfo"

# real QA test starts here
echo && echo pcp-zoneinfo output : Display default output
PCP_ARCHIVE="archives/pcp-zoneinfo" PCP_HOSTZONE=1 $pcp_zoneinfo 

archive_first="-a archives/pcp-zoneinfo -z -O +1"

echo && echo pcp-zoneinfo output : Display output 
pcp $archive_first zoneinfo

echo && echo pcp-zoneinfo output : Display output when given specified number of samples
pcp $archive_first zoneinfo -s 2

status=0
exit
