test/sun/tools/jinfo/Basic.sh
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File jdk-tl Cdiff test/sun/tools/jinfo/Basic.sh

test/sun/tools/jinfo/Basic.sh

Print this page

        

*** 1,9 **** #!/bin/sh # ! # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. --- 1,9 ---- #!/bin/sh # ! # Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation.
*** 44,86 **** failed=0 if [ $isWindows = false ]; then # -sysprops option ! ${JINFO} -sysprops $appJavaPid if [ $? != 0 ]; then failed=1; fi # -flags option ! ${JINFO} -flags $appJavaPid if [ $? != 0 ]; then failed=1; fi # no option ! ${JINFO} $appJavaPid if [ $? != 0 ]; then failed=1; fi fi # -flag option ! ${JINFO} -flag +PrintGC $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -flag -PrintGC $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -flag PrintGC $appJavaPid if [ $? != 0 ]; then failed=1; fi if $isSolaris; then ! ${JINFO} -flag +ExtendedDTraceProbes $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -flag -ExtendedDTraceProbes $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -flag ExtendedDTraceProbes $appJavaPid if [ $? != 0 ]; then failed=1; fi fi set -e --- 44,86 ---- failed=0 if [ $isWindows = false ]; then # -sysprops option ! ${JINFO} -J-XX:+UsePerfData -sysprops $appJavaPid if [ $? != 0 ]; then failed=1; fi # -flags option ! ${JINFO} -J-XX:+UsePerfData -flags $appJavaPid if [ $? != 0 ]; then failed=1; fi # no option ! ${JINFO} -J-XX:+UsePerfData $appJavaPid if [ $? != 0 ]; then failed=1; fi fi # -flag option ! ${JINFO} -J-XX:+UsePerfData -flag +PrintGC $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -J-XX:+UsePerfData -flag -PrintGC $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -J-XX:+UsePerfData -flag PrintGC $appJavaPid if [ $? != 0 ]; then failed=1; fi if $isSolaris; then ! ${JINFO} -J-XX:+UsePerfData -flag +ExtendedDTraceProbes $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -J-XX:+UsePerfData -flag -ExtendedDTraceProbes $appJavaPid if [ $? != 0 ]; then failed=1; fi ! ${JINFO} -J-XX:+UsePerfData -flag ExtendedDTraceProbes $appJavaPid if [ $? != 0 ]; then failed=1; fi fi set -e
test/sun/tools/jinfo/Basic.sh
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File