< prev index next >

test/jdk/java/awt/Toolkit/AutoShutdown/EventQueuePush/EventQueuePushAutoshutdown.sh

Print this page
rev 59383 : [mq]: final
   1 #!/bin/ksh -p
   2 
   3 #
   4 # Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
   5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6 #
   7 # This code is free software; you can redistribute it and/or modify it
   8 # under the terms of the GNU General Public License version 2 only, as
   9 # published by the Free Software Foundation.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #


  43  { echo "The test failed :-("
  44    echo "$*" 1>&2
  45    echo "exit status was $status"
  46    exit $status
  47  } #end of fail()
  48 
  49 #Call this from anywhere to pass the test with a message
  50 # usage: pass "reason why the test passed if applicable"
  51 pass()
  52  { echo "The test passed!!!"
  53    echo "$*" 1>&2
  54    exit 0
  55  } #end of pass()
  56 
  57 # end of subroutines
  58 
  59 
  60 # The beginning of the script proper
  61 OS=`uname -s`
  62 case "$OS" in
  63    AIX | CYGWIN* | Darwin | Linux | SunOS )
  64       FILESEP="/"
  65       ;;
  66 
  67    Windows_95 | Windows_98 |  Windows_NT | Windows_ME )
  68       FILESEP="\\"
  69       ;;
  70 
  71    # catch all other OSs
  72    * )
  73       echo "Unrecognized system!  $OS"
  74       fail "Unrecognized system!  $OS"
  75       ;;
  76 esac
  77 
  78 
  79 # Want this test to run standalone as well as in the harness, so do the
  80 #  following to copy the test's directory into the harness's scratch directory
  81 #  and set all appropriate variables:
  82 
  83 if [ -z "${TESTJAVA}" ] ; then


   1 #!/bin/ksh -p
   2 
   3 #
   4 # Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
   5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6 #
   7 # This code is free software; you can redistribute it and/or modify it
   8 # under the terms of the GNU General Public License version 2 only, as
   9 # published by the Free Software Foundation.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #


  43  { echo "The test failed :-("
  44    echo "$*" 1>&2
  45    echo "exit status was $status"
  46    exit $status
  47  } #end of fail()
  48 
  49 #Call this from anywhere to pass the test with a message
  50 # usage: pass "reason why the test passed if applicable"
  51 pass()
  52  { echo "The test passed!!!"
  53    echo "$*" 1>&2
  54    exit 0
  55  } #end of pass()
  56 
  57 # end of subroutines
  58 
  59 
  60 # The beginning of the script proper
  61 OS=`uname -s`
  62 case "$OS" in
  63    AIX | CYGWIN* | Darwin | Linux )
  64       FILESEP="/"
  65       ;;
  66 
  67    Windows_95 | Windows_98 |  Windows_NT | Windows_ME )
  68       FILESEP="\\"
  69       ;;
  70 
  71    # catch all other OSs
  72    * )
  73       echo "Unrecognized system!  $OS"
  74       fail "Unrecognized system!  $OS"
  75       ;;
  76 esac
  77 
  78 
  79 # Want this test to run standalone as well as in the harness, so do the
  80 #  following to copy the test's directory into the harness's scratch directory
  81 #  and set all appropriate variables:
  82 
  83 if [ -z "${TESTJAVA}" ] ; then


< prev index next >