< prev index next >

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

Print this page
rev 59106 : imported patch client


  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




  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 >