0N/A#
2362N/A# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A# Utilities for shell tests
0N/A#
0N/A
0N/A: ${TESTSRC=.} ${TESTCLASSES=.}
0N/A java="${TESTJAVA+${TESTJAVA}/bin/}java"
0N/Ajavac="${TESTJAVA+${TESTJAVA}/bin/}javac"
0N/A jar="${TESTJAVA+${TESTJAVA}/bin/}jar"
0N/A rmic="${TESTJAVA+${TESTJAVA}/bin/}rmic"
0N/A
0N/Acase `uname -s` in
0N/A Windows*|CYGWIN*)
0N/A WindowsOnly() { "$@"; }
0N/A UnixOnly() { :; }
0N/A PS=";" ;;
0N/A *)
0N/A UnixOnly() { "$@"; }
0N/A WindowsOnly() { :; }
0N/A PS=":";;
0N/Aesac
0N/A
0N/Afailed=""
0N/AFail() { echo "FAIL: $1"; failed="${failed}."; }
0N/A
0N/ADie() { printf "%s\n" "$*"; exit 1; }
0N/A
0N/ASys() {
0N/A printf "%s\n" "$*"; "$@"; rc="$?";
0N/A test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
0N/A}
0N/A
0N/ACheckFiles() {
0N/A for f in "$@"; do test -r "$f" || Die "File $f not found"; done
0N/A}
0N/A
0N/AReport() {
0N/A test "$#" != 2 && Die "Usage: Report success|failure rc"
0N/A
0N/A if test "$1" = "success" -a "$2" = 0; then
0N/A echo "PASS: succeeded as expected"
0N/A elif test "$1" = "failure" -a "$2" != 0; then
0N/A echo "PASS: failed as expected"
0N/A elif test "$1" = "success" -a "$2" != 0; then
0N/A Fail "test failed unexpectedly"
0N/A elif test "$1" = "failure" -a "$2" = 0; then
0N/A Fail "test succeeded unexpectedly"
0N/A else
0N/A Die "Usage: Report success|failure rc"
0N/A fi
0N/A}
0N/A
0N/AMkManifestWithClassPath() {
0N/A (echo "Manifest-Version: 1.0"; echo "Class-Path: $*") > MANIFEST.MF
0N/A}
0N/A
0N/AHorizontalRule() {
0N/A echo "-----------------------------------------------------------------"
0N/A}
0N/A
0N/ATest() {
0N/A HorizontalRule
0N/A expectedResult="$1"; shift
0N/A printf "%s\n" "$*"
"$@"
Report "$expectedResult" "$?"
}
Failure() { Test failure "$@"; }
Success() { Test success "$@"; }
Bottom() {
test "$#" = 1 -a "$1" = "Line" || Die "Usage: Bottom Line"
if test -n "$failed"; then
count=`printf "%s" "$failed" | wc -c | tr -d ' '`
echo "FAIL: $count tests failed"
exit 1
else
echo "PASS: all tests gave expected results"
exit 0
fi
}
BadJarFile() {
for jarfilename in "$@"; do pwd > "$jarfilename"; done
}
#----------------------------------------------------------------
# Usage: BCP=`DefaultBootClassPath`
# Returns default bootclasspath, discarding non-existent entries
#----------------------------------------------------------------
DefaultBootClassPath() {
echo 'public class B {public static void main(String[] a) {
System.out.println(System.getProperty("sun.boot.class.path"));}}' > B.java
"$javac" B.java
_BCP_=""
for elt in `"$java" B | tr "${PS}" " "`; do
test -r "$elt" -a -n "$elt" && _BCP_="${_BCP_:+${_BCP_}${PS}}${elt}"
done
rm -f B.java B.class
printf "%s" "$_BCP_" # Don't use echo -- unsafe on Windows
}
#----------------------------------------------------------------
# Foil message localization
#----------------------------------------------------------------
DiagnosticsInEnglishPlease() {
LANG="C" LC_ALL="C" LC_MESSAGES="C"; export LANG LC_ALL LC_MESSAGES
}