build.sh revision 2362
6144N/A#
6144N/A# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
6144N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6144N/A#
6144N/A# This code is free software; you can redistribute it and/or modify it
6144N/A# under the terms of the GNU General Public License version 2 only, as
6144N/A# published by the Free Software Foundation.
6144N/A#
6144N/A# This code is distributed in the hope that it will be useful, but WITHOUT
6144N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6144N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
6144N/A# version 2 for more details (a copy is included in the LICENSE file that
6144N/A# accompanied this code).
6144N/A#
6144N/A# You should have received a copy of the GNU General Public License version
6144N/A# 2 along with this work; if not, write to the Free Software Foundation,
6144N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6144N/A#
6144N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6144N/A# or visit www.oracle.com if you need additional information or have any
6144N/A# questions.
6144N/A#
6144N/A
6144N/A# -*- shell-script -*-
6144N/A#
6144N/A# @summary Check getEnclosingClass and other methods
6144N/A# @author Peter von der Ahé
6144N/A
6144N/AOS=`uname -s`;
6144N/Acase "${OS}" in
6144N/A Windows* | CYGWIN* )
6144N/A SEP=";"
6144N/A ;;
6144N/A
6144N/A * )
6144N/A SEP=":"
6144N/A ;;
6144N/Aesac
6144N/A
6144N/AJAVAC=${TESTJAVA}/bin/javac
6144N/A${JAVAC} -d ${TESTCLASSES} -sourcepath ${TESTSRC}${SEP}. ${TESTSRC}/EnclosingClassTest.java
6144N/A