/var/lib/pcp/testsuite/239 is in pcp-testsuite 4.0.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 76 77 78 79 80 | #! /bin/sh
# PCP QA Test No. 239
# pmnsmerge with embedded cpp(1) controls
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard filters
. ./common.product
. ./common.filter
. ./common.check
status=0
trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15
# real QA test starts here
mkdir $tmp.dir
cd $tmp.dir
echo >r1 'root {
}'
cat <<End-of-File >r2
/*
* Irix pmns for Irix 6.4
* frozen on 21 November 1996.
*/
#define _STARTVERSION 961121
root {
#include "irix-root"
}
#include "irix-pmns"
End-of-File
cat <<End-of-File >irix-root
hinv
End-of-File
cat <<End-of-File >irix-pmns
/*
* libirixpmda Performance Metrics Name Space Definition
*
* $Header: /plroot/eoe/pcp-1.0-melb/.RCS/PL/qa/RCS/239,v 1.6 2002/10/22 18:12:29 kenmcd Exp $
*/
hinv {
ncpu 1:18:2
cpuclock 1:26:1
dcache 1:26:2
icache 1:26:3
secondarycache 1:26:4
physmem 1:26:5
pmeminterleave 1:26:6
ndisk 1:26:7
nnode 1:26:8
nrouter 1:38:0
nrouterport 1:38:11
interconnect 1:38:13
map
}
hinv.map {
cpu 1:28:79
disk 1:80:13
node 1:39:49
router 1:38:1
routerport 1:38:12
}
End-of-File
rm -f out-pmns
pmnsmerge r1 r2 out-pmns
cat out-pmns
pminfo -n out-pmns -m | LC_COLLATE=POSIX sort
|