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
|
#! /bin/sh
# PCP QA Test No. 399
# pmie core dumps
#
# 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.check
. ./common.filter
[ $PCP_PLATFORM = darwin ] && \
_notrun "Neither disk.dev.response nor disk.dev.avactive for darwin"
status=0 # success is the default!
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
# real QA test starts here
$sudo rm -f core* $seq.core*
echo
echo "Test 1"
case $PCP_PLATFORM
in
linux|freebsd|openbsd|netbsd)
_need_metric disk.dev.avactive
cat >$tmp.conf <<'End-of-File'
dsk = "disk.dev";
total0 = $delta * $dsk.total@0;
total1 = $delta * $dsk.total@1;
iops = $delta * ($dsk.total@0 - $dsk.total@1);
resp = $delta * 1000 * ($dsk.avactive@0 - $dsk.avactive@1);
End-of-File
;;
solaris)
_need_metric disk.dev.run.time
cat >$tmp.conf <<'End-of-File'
dsk = "disk.dev";
total0 = $delta * $dsk.total@0;
total1 = $delta * $dsk.total@1;
iops = $delta * ($dsk.total@0 - $dsk.total@1);
resp = $delta * 1000 * ($dsk.run.time@0 - $dsk.run.time@1);
End-of-File
;;
*)
echo "No case for PCP_PLATFORM=$PCP_PLATFORM, bozo!"
exit
;;
esac
pmie -vv -t 1 -T 1 <$tmp.conf >/dev/null 2>$tmp.err
echo "Stderr output ..."
cat $tmp.err | _show_pmie_errors
_check_core
echo
echo "Test 2"
case $PCP_PLATFORM
in
linux|freebsd|openbsd|netbsd)
cat >$tmp.conf <<'End-of-File'
dsk = "disk.dev";
total0 = $delta * $dsk.total@0;
total1 = $delta * $dsk.total@1;
iops = $delta * ($dsk.total@0 - $dsk.total@1);
resp = $delta * 1000 * ($dsk.avactive@0 - $dsk.avactive@1);
avg = $delta * 1000 * ($dsk.avactive@0 - $dsk.avactive@1) / ($dsk.total@0 - $dsk.total@1);
End-of-File
;;
solaris)
cat >$tmp.conf <<'End-of-File'
dsk = "disk.dev";
total0 = $delta * $dsk.total@0;
total1 = $delta * $dsk.total@1;
iops = $delta * ($dsk.total@0 - $dsk.total@1);
resp = $delta * 1000 * ($dsk.run.time@0 - $dsk.run.time@1);
avg = $delta * 1000 * ($dsk.run.time@0 - $dsk.run.time@1) / ($dsk.total@0 - $dsk.total@1);
End-of-File
;;
esac
pmie -vv -t 1 -T 1 <$tmp.conf >/dev/null 2>$tmp.err
echo "Stderr output ..."
cat $tmp.err | _show_pmie_errors
_check_core
exit
|