1 #
   2 # Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 
  24 # @test
  25 # @bug 4990825
  26 # @run shell/timeout=60 jstatdDefaults.sh
  27 # @summary Test functionality of 'jstatd &'
  28 
  29 . ${TESTSRC-.}/../../jvmstat/testlibrary/utils.sh
  30 
  31 setup
  32 verify_os
  33 
  34 cleanup() {
  35   kill_proc ${JSTATD_PID}
  36 }
  37 
  38 trap 'cleanup' 0 HUP INT QUIT TERM
  39 
  40 JSTATD="${TESTJAVA}/bin/jstatd"
  41 JPS="${TESTJAVA}/bin/jps"
  42 JSTAT="${TESTJAVA}/bin/jstat"
  43 
  44 HOSTNAME=`uname -n`
  45 
  46 JSTATD_OUT="jstatd_$$.out"
  47 
  48 ${JSTATD} -J-Djava.security.policy=${TESTSRC}/all.policy 2>&1 > ${JSTATD_OUT} &
  49 JSTATD_PID=$!
  50 
  51 echo "jstatd started as pid ${JSTATD_PID}"
  52 sleep 3
  53 
  54 ${JPS} ${HOSTNAME} 2>&1 | awk -f ${TESTSRC}/jpsOutput1.awk
  55 
  56 if [ $? -ne 0 ]
  57 then
  58     echo "Output of jps differs from expected output. Failed."
  59     cleanup
  60     exit 1
  61 fi
  62 
  63 ${JSTAT} -gcutil ${JSTATD_PID}@${HOSTNAME} 250 5 2>&1 | awk -f ${TESTSRC}/jstatGcutilOutput1.awk
  64 RC=$?
  65 
  66 if [ ${RC} -ne 0 ]
  67 then
  68     echo "jstat output differs from expected output"
  69 fi
  70 
  71 if [ -s ${JSTATD_OUT} ]
  72 then
  73     echo "jstatd generated the following, unexpected output:"
  74     RC=1
  75 fi
  76 
  77 cleanup
  78 
  79 exit ${RC}