jdk/test/java/lang/ClassLoader/Assert.sh
author robm
Mon, 10 Feb 2014 14:35:42 +0000
changeset 22948 2cf7e7202386
parent 15254 3997a6f357cb
child 23010 6dadb192ad81
permissions -rw-r--r--
7152892: some jtreg tests fail with permission denied Reviewed-by: coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
     2
# Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    21
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
22948
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    26
OS=`uname -s`
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    27
case "$OS" in
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    28
  SunOS | Linux | Darwin )
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    29
    FS="/"
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    30
    CHMOD="${FS}bin${FS}chmod"
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    31
    ;;
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    32
  Windows* | CYGWIN* )
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    33
    CHMOD="chmod"
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    34
    ;;
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    35
  * )
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    36
    echo "Unrecognized system!"
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    37
    exit 1;
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    38
    ;;
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    39
esac
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    40
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
if [ "${TESTSRC}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
  echo "TESTSRC not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
echo "TESTSRC=${TESTSRC}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
if [ "${TESTJAVA}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
  echo "TESTJAVA not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
echo "TESTJAVA=${TESTJAVA}"
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    53
if [ "${COMPILEJAVA}" = "" ]; then
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    54
  COMPILEJAVA="${TESTJAVA}"
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    55
fi
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    56
echo "COMPILEJAVA=${COMPILEJAVA}"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
if [ "${TESTCLASSES}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
  echo "TESTCLASSES not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
echo "TESTCLASSES=${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
echo "CLASSPATH=${CLASSPATH}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
cp ${TESTSRC}/Assert.java .
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
cp -R ${TESTSRC}/package1 .
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
cp -R ${TESTSRC}/package2 .
22948
2cf7e7202386 7152892: some jtreg tests fail with permission denied
robm
parents: 15254
diff changeset
    68
${CHMOD} -R u+w *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    70
${COMPILEJAVA}/bin/javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} Assert.java 
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 5506
diff changeset
    72
${TESTJAVA}/bin/java ${TESTVMOPTS} Assert
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
result=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
if [ $result -eq 0 ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
  echo "Passed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  echo "Failed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
exit $result
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83