1 #!/bin/sh
   2 
   3 # Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
   4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   5 #
   6 # This code is free software; you can redistribute it and/or modify it
   7 # under the terms of the GNU General Public License version 2 only, as
   8 # published by the Free Software Foundation.
   9 #
  10 # This code is distributed in the hope that it will be useful, but WITHOUT
  11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13 # version 2 for more details (a copy is included in the LICENSE file that
  14 # accompanied this code).
  15 #
  16 # You should have received a copy of the GNU General Public License version
  17 # 2 along with this work; if not, write to the Free Software Foundation,
  18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19 #
  20 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  21 # CA 95054 USA or visit www.sun.com if you need additional information or
  22 # have any questions.
  23 
  24 if [ "${TESTSRC}" = "" ]
  25 then
  26   echo "TESTSRC not set.  Test cannot execute.  Failed."
  27   exit 1
  28 fi
  29 echo "TESTSRC=${TESTSRC}"
  30 if [ "${TESTJAVA}" = "" ]
  31 then
  32   echo "TESTJAVA not set.  Test cannot execute.  Failed."
  33   exit 1
  34 fi
  35 echo "TESTJAVA=${TESTJAVA}"
  36 if [ "${TESTCLASSES}" = "" ]
  37 then
  38   echo "TESTCLASSES not set.  Test cannot execute.  Failed."
  39   exit 1
  40 fi
  41 echo "TESTCLASSES=${TESTCLASSES}"
  42 echo "CLASSPATH=${CLASSPATH}"
  43 
  44 # set platform-dependent variables
  45 OS=`uname -s`
  46 case "$OS" in
  47   SunOS | Linux )
  48     NULL=/dev/null
  49     PS=":"
  50     FS="/"
  51     ;;
  52   Windows* | CYGWIN* )
  53     NULL=NUL
  54     PS=";"
  55     FS="\\"
  56     ;;
  57   * )
  58     echo "Unrecognized system!"
  59     exit 1;
  60     ;;
  61 esac
  62 
  63 mkdir -p classes
  64 cp ${TESTSRC}${FS}*.java .
  65 ${TESTJAVA}${FS}bin${FS}javac -d classes A.java B.java C.java
  66 ${TESTJAVA}${FS}bin${FS}javac Main.java
  67 ${TESTJAVA}${FS}bin${FS}java Main
  68 result=$?
  69 if [ $result -eq 0 ]
  70 then
  71   echo "Passed 1 of 2"
  72 else
  73   echo "Failed 1 of 2"
  74   exit $result
  75 fi
  76 ${TESTJAVA}${FS}bin${FS}java Main foo
  77 result=$?
  78 if [ $result -eq 0 ]
  79 then
  80   echo "Passed 2 of 2"
  81 else
  82   echo "Failed 2 of 2"
  83 fi
  84 exit $result