< prev index next >

test/jdk/javax/imageio/spi/AppletContextTest/BadPluginConfigurationTest.sh

Print this page
rev 59383 : [mq]: final
   1 #!/bin/ksh -p
   2 # Copyright (c) 2005, 2018, 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 #


  86 
  87 # Checking for proper OS
  88 OS=`uname -s`
  89 MKTEMP="mktemp"
  90 case "$OS" in
  91    AIX )
  92       FILESEP="/"
  93       PATHSEP=":"
  94       TMP=`cd /tmp; pwd -P`
  95 
  96       type ${MKTEMP} > /dev/null 2>&1
  97 
  98       if ! [ $? -ne 0 ] ; then 
  99         MKTEMP="/opt/freeware/bin/mktemp"
 100       fi
 101       if ! [ -e ${MKTEMP} ] ; then 
 102         pass "Test skipped because no mktemp found on this machine"
 103       fi
 104       ;;
 105 
 106    Darwin | Linux | SunOS )
 107       FILESEP="/"
 108       PATHSEP=":"
 109       TMP=`cd /tmp; pwd -P`
 110       ;;
 111 
 112    Windows* )
 113       FILESEP="\\"
 114       PATHSEP=";"
 115       TMP=`cd "${SystemRoot}/Temp"; echo ${PWD}`
 116       ;;
 117 
 118    CYGWIN* )
 119       FILESEP="/"
 120       PATHSEP=";"
 121       TMP="/tmp"
 122       ;;
 123 
 124    # catch all other OSs
 125    * )
 126       echo "Unrecognized system!  $OS"


   1 #!/bin/ksh -p
   2 # Copyright (c) 2005, 2020, 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 #


  86 
  87 # Checking for proper OS
  88 OS=`uname -s`
  89 MKTEMP="mktemp"
  90 case "$OS" in
  91    AIX )
  92       FILESEP="/"
  93       PATHSEP=":"
  94       TMP=`cd /tmp; pwd -P`
  95 
  96       type ${MKTEMP} > /dev/null 2>&1
  97 
  98       if ! [ $? -ne 0 ] ; then 
  99         MKTEMP="/opt/freeware/bin/mktemp"
 100       fi
 101       if ! [ -e ${MKTEMP} ] ; then 
 102         pass "Test skipped because no mktemp found on this machine"
 103       fi
 104       ;;
 105 
 106    Darwin | Linux )
 107       FILESEP="/"
 108       PATHSEP=":"
 109       TMP=`cd /tmp; pwd -P`
 110       ;;
 111 
 112    Windows* )
 113       FILESEP="\\"
 114       PATHSEP=";"
 115       TMP=`cd "${SystemRoot}/Temp"; echo ${PWD}`
 116       ;;
 117 
 118    CYGWIN* )
 119       FILESEP="/"
 120       PATHSEP=";"
 121       TMP="/tmp"
 122       ;;
 123 
 124    # catch all other OSs
 125    * )
 126       echo "Unrecognized system!  $OS"


< prev index next >