summaryrefslogtreecommitdiff
path: root/qa/580
blob: a63b2a09ac20d169a77c831954e8ac4dd44d46ed (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#! /bin/sh
# PCP QA Test No. 580
# Compare pmGetInDom and pmNameIndom for instance names containing spaces
#
# 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.filter
. ./common.check
. ./common.product

rm -f $seq.out
case $PCP_PLATFORM
in
    linux)
	# proc metrics may not be available
	#
	if pminfo proc.nprocs >/dev/null 2>&1
	then
	    ln $seq.out.$PCP_PLATFORM $seq.out || exit 1
	else
	    ln $seq.out.$PCP_PLATFORM.noproc $seq.out || exit 1
	fi
	;;
    irix|darwin)
	ln $seq.out.$PCP_PLATFORM $seq.out || exit 1
	;;
    solaris)
	# same output for Mac OS X and OpenSolaris
	ln $seq.out.darwin $seq.out || exit 1
	;;
    *)
	_notrun "Need qualified output for $PCP_PLATFORM"
	;;
esac

# see if unix domain sockets are available (permissions)
_get_libpcp_config
target="-h localhost"
$unix_domain_sockets && target="-h unix:"

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

_filter()
{
    sed -e 's/  *$//'
}

# real QA test starts here
src/indom -i 15 kernel.all.load | _filter
if [ $PCP_PLATFORM != darwin -a $PCP_PLATFORM != solaris ]
then
    src/indom $target -i 1 proc.psinfo.pid \
    | _filter \
    | sed 's/<0*1/<ONE/g;
s,/etc/init ,init,g;
s,/etc/init,init,g;
s,/sbin/init,init,g;
s, /usr/lib/systemd/systemd\([ "]\), init\1,;
s,init[^>]*,init,g;'
   # Irix 6.2 has a space after the init, linux may have extra arguments
   # And on some Linux systems (e.g. Fedora 18), pid 1 is not init, but
   # /usr/lib/systemd/systemd --switched-root --system --deserialize ...
fi
src/indom -i 4 sample.needprofile sampledso.needprofile | _filter
src/indom -i 500 sample.bin | _filter

# success, all done
status=0
exit