blob: b678aa434535ab9a92986c41b88fd28d52f45315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
|