diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
commit | 47e6e7c84f008a53061e661f31ae96629bc694ef (patch) | |
tree | 648a07f3b5b9d67ce19b0fd72e8caa1175c98f1a /qa/622 | |
download | pcp-47e6e7c84f008a53061e661f31ae96629bc694ef.tar.gz |
Debian 3.9.10debian/3.9.10debian
Diffstat (limited to 'qa/622')
-rwxr-xr-x | qa/622 | 51 |
1 files changed, 51 insertions, 0 deletions
@@ -0,0 +1,51 @@ +#! /bin/sh +# PCP QA Test No. 622 +# Test for the ability for pmie(1) to accept hyphens in host names, but +# not metric names. +# +# This is in response to test 503, which did not allow for the fact that +# a hostname may have a hyphen in it! By the way, test 503 should be +# fixed (by now) to allow for hosts with hyphens in their names... this +# test shows how the config file ought to have been built. +# +# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved. +# + +seq=`basename $0` +echo "QA output created by $seq" + +# get standard environment, filters and checks +. ./common.product +. ./common.filter +. ./common.check +. ./common.config + +[ -z "$PCPQA_HYPHEN_HOST" -o "$PCPQA_HYPHEN_HOST" = "some-host" ] && \ + _notrun 'PCPQA_HYPHEN_HOST is not set in ./common.config' + +status=1 # failure is the default! +trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15 + + +# shell functs for QA test + +mkPMIEConfig() { + cat >$tmp.rule <<EOF +delta = 1 sec; +one = 'sample.long.no-hyphen' :'$PCPQA_HYPHEN_HOST'; +EOF +} + + +# real QA test starts here + +mkPMIEConfig +pmie -D APPL0 -C -c $tmp.rule 2>&1 \ +| sed \ + -e "s,/tmp/$seq-[0-9]*\.rule,TMPFILE," \ + -e '/pmLookupName failed: /d' \ + -e "s/$PCPQA_HYPHEN_HOST/PCPQA_HYPHEN_HOST/g" + +# success, all done +status=0 +exit |