/var/lib/pcp/testsuite/266 is in pcp-testsuite 3.8.12ubuntu1.
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 | #! /bin/sh
# PCP QA Test No. 266
#
# pmlogextract interactions between -S and -T and the timezone
# Bug #466346
#
# 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
rm -f $seq.out
if [ $PCP_VER -lt 3600 ]
then
# V1 archives supported
ln $seq.out.1 $seq.out
arch=src/960624.08.17
pmns="-n src/root_irix"
else
# no support for V1 archives
ln $seq.out.2 $seq.out
arch=src/960624.08.17_v2
pmns=''
fi
_merge_filter()
{
sed -e "s/.tmp.$seq-$$/TMP/"
}
_dump_filter()
{
# temp file name, but also this archive is V1 and hence not endian
# safe ... so the strange value mappings!
#
sed -e "s/.tmp.$seq-$$/TMP/" \
-e "s/2928894505887203328/159819048/" \
-e "s/8135338249615835136/159901296/" \
| $PCP_AWK_PROG '
NF==0 { skip = 0 }
skip == 1 { next }
{ print }
/^[0-9]/ { print "..."; skip = 1 }'
}
status=1 # failure is the default!
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
# real QA test starts here
TZ=EST-10; export TZ
echo "=== input archive ==="
pmdumplog -L $arch | ./xlate_2_new_pmns
echo
pmdumplog -z -L $arch | ./xlate_2_new_pmns
echo
echo "=== window before archive start, local TZ=$TZ ==="
rm -f $tmp.*
pmlogextract -S@08:00:00 -T@08:01:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window before archive start, timezone of archive ==="
rm -f $tmp.*
pmlogextract -z -S@15:00:00 -T@15:01:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window before archive start, UTC timezone ==="
rm -f $tmp.*
pmlogextract -Z UTC -S@22:00:00 -T@22:00:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== empty window in archive, local TZ=$TZ ==="
rm -f $tmp.*
pmlogextract -S@08:35:00 -T@08:35:01 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== empty window in archive, timezone of archive ==="
rm -f $tmp.*
pmlogextract -z -S@15:35:00 -T@15:35:01 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== empty window in archive, UTC timezone ==="
rm -f $tmp.*
pmlogextract -Z UTC -S@22:35:00 -T@22:35:01 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window in archive, local TZ=$TZ ==="
rm -f $tmp.*
pmlogextract -S@08:35:00 -T@08:36:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $pmns $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window in archive, timezone of archive ==="
rm -f $tmp.*
pmlogextract -z -S@15:35:00 -T@15:36:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $pmns $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window in archive, UTC timezone ==="
rm -f $tmp.*
pmlogextract -Z UTC -S@22:35:00 -T@22:36:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $pmns $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window after archive end, local TZ=$TZ ==="
rm -f $tmp.*
pmlogextract -S@09:00:00 -T@09:01:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window after archive end, timezone of archive ==="
rm -f $tmp.*
pmlogextract -z -S@16:00:00 -T@16:01:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
echo
echo "=== window after archive end, UTC timezone ==="
rm -f $tmp.*
pmlogextract -Z UTC -S@23:00:00 -T@23:01:00 $arch $tmp 2>&1 | _merge_filter
pmdumplog -lm $tmp 2>&1 | _dump_filter | ./xlate_2_new_pmns
# success, all done
status=0
exit
|