/var/lib/pcp/testsuite/032 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 | #! /bin/sh
# PCP QA Test No. 032
# exercise pmControlLog over the primary logger
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
. ./common.check
. ./common.filter
. ./common.product
_echo()
{
echo ""
echo "+++" $* "+++"
}
_cleanup()
{
_restore_primary_logger
rm -f $tmp.*
exit $status
}
status=1
rm -f $seq.full
trap "_cleanup" 0 1 2 3 15
if [ -d $PCP_LOG_DIR/pmlogger ]
then
LOGGING_DIR=$PCP_LOG_DIR/pmlogger
else
LOGGING_DIR=$PCP_LOG_DIR
fi
# sensitive to the state of the primary logger and the sample PMDA,
# so re-start them to make sure. Up-to-6O second delay is to avoid
# clash in basename of archive between consecutive instances of the
# primary logger.
#
$sudo $PCP_RC_DIR/pcp stop | _filter_pcp_stop
timeleft=`date +%S`
timesleep=`expr 60 - $timeleft`
sleep $timesleep
_writable_primary_logger
$sudo $PCP_RC_DIR/pcp start | _filter_pcp_start
_wait_for_pmcd
_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log
# real QA test starts here
_echo "expect this to be off"
src/logcontrol enquire sample.control
_echo "force these off"
src/logcontrol mandatory off sample.bin sampledso.colour
_echo "should fail to turn on"
src/logcontrol advisory on sampledso.colour
src/logcontrol -i bin-300 advisory on sample.bin
_echo "force these on"
src/logcontrol mandatory on sample.colour sampledso.bin
_echo "should fail to turn off"
src/logcontrol advisory off sampledso.bin
src/logcontrol -i red advisory off sample.colour
_echo "allow advisory control over this one"
src/logcontrol mandatory maybe sample.lights
_echo "turn it on"
src/logcontrol advisory on sample.lights
_echo "turn it on again (NOP)"
src/logcontrol advisory on sample.lights
_echo "turn it off"
src/logcontrol advisory off sample.lights
_echo "turn it on"
src/logcontrol advisory on sample.lights
status=0
exit
|