checksealed.sh 1.8 KB
Newer Older
D
duke 已提交
1 2 3
#! /bin/sh

#
4
# Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# 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.
#
21 22 23
# 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.
D
duke 已提交
24 25 26 27 28 29
#

#

OS=`uname -s`
case "$OS" in
30
  SunOS | Darwin | AIX )
D
duke 已提交
31
    PS=":"
32
    FS="/"
D
duke 已提交
33 34 35
    ;;
  Linux )
    PS=":"
36
    FS="/"
D
duke 已提交
37
    ;;
38 39 40 41
  CYGWIN* )
    PS=";"
    FS="/"
    ;;
D
duke 已提交
42 43 44 45 46 47 48 49 50 51 52 53
  Windows* )
    PS=";"
    FS="\\"
    ;;
  * )
    echo "Unrecognized system!"
    exit 1;
    ;;
esac


if [ x"$TESTJAVA" = x ]; then TESTJAVA=$1; fi
54
if [ x"$COMPILEJAVA" = x ]; then COMPILEJAVA=$1; fi
D
duke 已提交
55 56
if [ x"$TESTSRC" = x ]; then TESTSRC=.; fi

57
CLASSPATH=".${PS}${TESTSRC}${FS}a${PS}${TESTSRC}${FS}b.jar"
D
duke 已提交
58

59 60
${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} -classpath "${CLASSPATH}" -d . \
    ${TESTSRC}${FS}CheckSealed.java
61
${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -cp "${CLASSPATH}" CheckSealed 1
D
duke 已提交
62
if [ $? != 0 ]; then exit 1; fi
63
${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -cp "${CLASSPATH}" CheckSealed 2
D
duke 已提交
64
if [ $? != 0 ]; then exit 1; fi