This file is indexed.

/var/lib/pcp/testsuite/772 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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#!/bin/sh
# PCP QA Test No. 772
# pmnsmerge -x checks
#
# Copyright (c) 2015 Ken McDonell.  All Rights Reserved.
#

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

# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check

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

cat <<End-of-File >$tmp.root
root {
	foo	1:2:3
	dyno	4:*:*
	bar
}
bar {
	bar
	one	7:0:1
}
bar.bar {
	bar
	two	7:0:2
}
bar.bar.bar {
	three	7:0:3
}
End-of-File

cat <<End-of-File >$tmp.root2
root {
	black
	white
}
black {
	sheep	7:0:2
}
white {
	dyno	4:*:*
}
End-of-File

cat <<End-of-File >$tmp.root3
root {
	white
	goat	7:0:2
}
white {
	dyno	4:*:*
}
End-of-File

cat <<End-of-File >$tmp.root4
root {
	white
}
white {
	dyno	4:*:*
}
End-of-File

_filter()
{
    sed \
	-e "s@$tmp@TMP@g" \
    # end
}

# real QA test starts here
echo "no dups"
rm -f $tmp.tmp
pmnsmerge $tmp.root $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "no dups -x"
rm -f $tmp.tmp
pmnsmerge -x $tmp.root $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "dups"
rm -f $tmp.tmp
pmnsmerge $tmp.root $tmp.root2 $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "dups - order reversed"
rm -f $tmp.tmp
pmnsmerge $tmp.root $tmp.root3 $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "dups -x"
rm -f $tmp.tmp
pmnsmerge -x $tmp.root $tmp.root2 $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "dups -x - order reversed"
rm -f $tmp.tmp
pmnsmerge -x $tmp.root $tmp.root3 $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "dups - 3 input files"
rm -f $tmp.tmp
pmnsmerge $tmp.root $tmp.root2 $tmp.root3 $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"
cp $tmp.tmp $tmp.merged

echo
echo "only dynamic dups - 3 input files"
rm -f $tmp.tmp
pmnsmerge $tmp.root $tmp.root2 $tmp.root4 $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "merged"
rm -f $tmp.tmp
pmnsmerge $tmp.merged $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

echo
echo "merged -x"
rm -f $tmp.tmp
pmnsmerge -x $tmp.merged $tmp.tmp >$tmp.out 2>&1
xit=$?
_filter <$tmp.out
echo "exit status: $xit"
not=''
[ -f $tmp.tmp ] || not=' not'
echo "output PMNS$not created"

# success, all done
status=0

exit