< prev index next >

test/jdk/java/awt/FontClass/CreateFont/fileaccess/TestFontFile.sh

Print this page
rev 48460 : 8194869: [TESTBUG][aix, s390] Adapt tests to platforms.
Reviewed-by: mbaesken, simonis


  29 
  30 if [ "${TESTJAVA}" = "" ]
  31 then
  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."
  36 fi
  37 
  38 if [ "${TESTCLASSES}" = "" ]
  39 then
  40   echo "TESTCLASSES not set.  Test cannot execute.  Failed."
  41   exit 1
  42 fi
  43 
  44 BIT_FLAG=""
  45 
  46 # set platform-dependent variables
  47 OS=`uname -s`
  48 case "$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     ;;
  69 esac


  29 
  30 if [ "${TESTJAVA}" = "" ]
  31 then
  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."
  36 fi
  37 
  38 if [ "${TESTCLASSES}" = "" ]
  39 then
  40   echo "TESTCLASSES not set.  Test cannot execute.  Failed."
  41   exit 1
  42 fi
  43 
  44 BIT_FLAG=""
  45 
  46 # set platform-dependent variables
  47 OS=`uname -s`
  48 case "$OS" in
  49   AIX | Darwin | Linux | SunOS )
  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     ;;
  69 esac
< prev index next >