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
|
#!/bin/sh
# PCP QA Test No. 480
# fault injection for libpcp/logmeta.c
#
# Copyright (c) 2011 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
LD_PRELOAD=$PCP_LIB_DIR/libpcp_fault.so; export LD_PRELOAD
src/check_fault_injection >/dev/null 2>&1 || \
_notrun "libpcp not built with fault injection enabled"
unset LD_PRELOAD
rm -f $seq.out
eval `src/sizeof ptr`
if [ "$ptr" = 8 ]
then
ln $seq.out.1 $seq.out || exit 1
else
ln $seq.out.2 $seq.out || exit 1
fi
status=0 # success is the default!
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
# from pmNoMem() - [Sun Sep 4 21:30:34] torture_logmeta(17548)
_filter()
{
sed \
-e '/^\[[A-Z][a-z][a-z] [A-Z][a-z][a-z] *[0-9][0-9]* [0-9:]*]/{
s//[DATE]/
s/([0-9][0-9]*)/(PID)/
}' \
-e 's/Not enough space/Cannot allocate memory/' \
# end
}
# real QA test starts here
PM_FAULT_CONTROL=$tmp.control; export PM_FAULT_CONTROL
LD_PRELOAD=$PCP_LIB_DIR/libpcp_fault.so; export LD_PRELOAD
for i in 1 2 3 4 5 6 7 8 9
do
# some of the fault points that used to be in logmeta.c have moved
# ...
case $i
in
3|4|6)
echo "libpcp/e_indom.c:$i" >$tmp.control
;;
*)
echo "libpcp/logmeta.c:$i" >$tmp.control
;;
esac
echo
echo "=== `cat $tmp.control` ==="
case $i
in
1|2|3|4)
pmdumplog -diz archives/ace_v2 2>&1 | _filter
;;
7|8|9)
src/torture_logmeta -f archives/ace_v2 1 2 123 2>&1 | _filter
;;
5|6)
rm -f $tmp.0 $tmp.meta $tmp.index
echo "log mandatory on 100msec { sample.bin }" >$tmp.config
pmlogger -c $tmp.config -s 2 -l $tmp.log $tmp
_filter_pmlogger_log <$tmp.log | _filter
;;
esac
done
exit
|