1#
2# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.
8#
9# This code is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12# version 2 for more details (a copy is included in the LICENSE file that
13# accompanied this code).
14#
15# You should have received a copy of the GNU General Public License version
16# 2 along with this work; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18#
19# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
22#
23
24#!/bin/sh
25
26if [ "${TESTSRC}" = "" ]
27then TESTSRC=.
28fi
29
30if [ "${TESTJAVA}" = "" ]
31then
32  PARENT=`dirname \`which java\``
33  TESTJAVA=`dirname ${PARENT}`
34  echo "TESTJAVA not set, selecting " ${TESTJAVA}
35  echo "If this is incorrect, try setting the variable manually."
36fi
37
38if [ "${TESTCLASSES}" = "" ]
39then
40  echo "TESTCLASSES not set.  Test cannot execute.  Failed."
41  exit 1
42fi
43
44BIT_FLAG=""
45
46# set platform-dependent variables
47OS=`uname -s`
48case "$OS" in
49  SunOS | Linux | Darwin )
50    NULL=/dev/null
51    PS=":"
52    FS="/"
53    ## for solaris, linux it's HOME
54    FILE_LOCATION=$HOME
55    if [ -f ${FILE_LOCATION}${FS}JDK64BIT -a ${OS} = "SunOS" ]
56    then
57        BIT_FLAG=`cat ${FILE_LOCATION}${FS}JDK64BIT`
58    fi
59    ;;
60  Windows_* | CYGWIN* )
61    NULL=NUL
62    PS=";"
63    FS="\\"
64    ;;
65  * )
66    echo "Unrecognized system!"
67    exit 1;
68    ;;
69esac
70
71JEMMYPATH=${CPAPPEND}
72CLASSPATH=.${PS}${TESTCLASSES}${PS}${JEMMYPATH} ; export CLASSPATH
73
74THIS_DIR=`pwd`
75
76${TESTJAVA}${FS}bin${FS}java ${BIT_FLAG} -version
77
78${TESTJAVA}${FS}bin${FS}java ${BIT_FLAG} FontFile > test.out 2>&1
79
80STATUS=$?
81
82cat test.out
83
84exit $STATUS
85