Xchecksig.sh 3.5 KB
Newer Older
1
# 
2
#  Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
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
#  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.
# 
#  This code is distributed in the hope that it will be useful, but WITHOUT
#  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
#  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
#  version 2 for more details (a copy is included in the LICENSE file that
#  accompanied this code).
# 
#  You should have received a copy of the GNU General Public License version
#  2 along with this work; if not, write to the Free Software Foundation,
#  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
# 
#  Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
#  or visit www.oracle.com if you need additional information or have any
#  questions.
# 

 
# @test Xchecksig.sh
# @bug 7051189
# @summary Need to suppress info message if -xcheck:jni used with libjsig.so
# @run shell Xchecksig.sh
#

if [ "${TESTSRC}" = "" ]
then
33 34
  TESTSRC=${PWD}
  echo "TESTSRC not set.  Using "${TESTSRC}" as default"
35
fi
36 37 38
echo "TESTSRC=${TESTSRC}"
## Adding common setup Variables for running shell tests.
. ${TESTSRC}/../../test_env.sh
39 40 41

OS=`uname -s`
case "$OS" in
42
  Windows_* | CYGWIN_* )
43 44 45 46 47 48 49 50 51
    printf "Not testing libjsig.so on Windows. PASSED.\n "
    exit 0
    ;;
esac

JAVA=${TESTJAVA}${FS}bin${FS}java

# LD_PRELOAD arch needs to match the binary we run, so run the java
# 64-bit binary directly if we are testing 64-bit (bin/ARCH/java).
52 53
# Check if TESTVMOPS contains -d64, but cannot use 
# java ${TESTVMOPS} to run "java -d64"  with LD_PRELOAD.
54 55 56

if [ ${OS} -eq "SunOS" ]
then
57 58
  printf  "SunOS test TESTVMOPTS = ${TESTVMOPTS}"
  printf ${TESTVMOPTS} | grep d64 > /dev/null
59 60
  if [ $? -eq 0 ]
  then
61
    printf "SunOS 64-bit test\n"
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
    BIT_FLAG=-d64
  fi
fi

ARCH=`uname -p`
case $ARCH in
  i386)
    if [ X${BIT_FLAG} != "X" ]
    then
      ARCH=amd64
      JAVA=${TESTJAVA}${FS}bin${FS}${ARCH}${FS}java
    fi
    ;;
  sparc)
    if [ X${BIT_FLAG} != "X" ]
    then
      ARCH=sparcv9
      JAVA=${TESTJAVA}${FS}bin${FS}${ARCH}${FS}java
    fi
    ;;
  * )
    printf "Not testing architecture $ARCH, skipping test.\n"
    exit 0
  ;; 
esac

88
LIBJSIG=${COMPILEJAVA}${FS}jre${FS}lib${FS}${ARCH}${FS}libjsig.so
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105

# If libjsig and binary do not match, skip test.

A=`file ${LIBJSIG} | awk '{ print $3 }'`
B=`file ${JAVA}    | awk '{ print $3 }'`

if [ $A -ne $B ]
then
  printf "Mismatching binary and library to preload, skipping test.\n"
  exit 0
fi

if [ ! -f ${LIBJSIG} ]
then
  printf "Skipping test: libjsig missing for given architecture: ${LIBJSIG}\n"
  exit 0
fi
106
# Use java -version to test, java version info appears on stderr,
107 108 109 110
# the libjsig message we are removing appears on stdout.

# grep returns zero meaning found, non-zero means not found:

111
LD_PRELOAD=${LIBJSIG} ${JAVA} ${TESTVMOPTS} -Xcheck:jni -version 2>&1  | grep "libjsig is activated"
112 113 114 115 116 117
if [ $? -eq 0 ]; then
  printf "Failed: -Xcheck:jni prints message when libjsig.so is loaded.\n"
  exit 1
fi


118
LD_PRELOAD=${LIBJSIG} ${JAVA} ${TESTVMOPTS} -Xcheck:jni -verbose:jni -version 2>&1 | grep "libjsig is activated"
119 120 121 122 123 124 125 126
if [ $? != 0 ]; then
  printf "Failed: -Xcheck:jni does not print message when libjsig.so is loaded and -verbose:jni is set.\n"
  exit 1
fi

printf "PASSED\n"
exit 0