< prev index next >

test/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh

Print this page

        

*** 1,7 **** # ! # Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. --- 1,7 ---- # ! # Copyright (c) 2008, 2017, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation.
*** 22,32 **** # #!/bin/ksh -p # # @test IOExceptionIfEncodedURLTest.sh ! # @bug 6193279 6619458 # @summary REGRESSION: AppletViewer throws IOException when path is encoded URL # @author Dmitry Cherepanov: area=appletviewer # @modules java.base/sun.net.www # java.desktop # @run compile IOExceptionIfEncodedURLTest.java --- 22,32 ---- # #!/bin/ksh -p # # @test IOExceptionIfEncodedURLTest.sh ! # @bug 6193279 6619458 8137087 # @summary REGRESSION: AppletViewer throws IOException when path is encoded URL # @author Dmitry Cherepanov: area=appletviewer # @modules java.base/sun.net.www # java.desktop # @run compile IOExceptionIfEncodedURLTest.java
*** 54,64 **** } #end of pass() #Call this to run the test with a file name test() { ! ${TESTJAVA}${FILESEP}bin${FILESEP}appletviewer -Xnosecurity ${URL} > err 2>&1 & APPLET_ID=$! sleep 15 kill -9 $APPLET_ID # these exceptions will be thrown if the test fails --- 54,64 ---- } #end of pass() #Call this to run the test with a file name test() { ! "${TESTJAVA}"${FILESEP}bin${FILESEP}appletviewer -Xnosecurity ${URL} > err 2>&1 & APPLET_ID=$! sleep 15 kill -9 $APPLET_ID # these exceptions will be thrown if the test fails
*** 132,142 **** CYGWIN* ) VAR="A different value for Cygwin" DEFAULT_JDK="/cygdrive/c/Program\ Files/Java/jdk1.8.0" FILESEP="/" PATHSEP=";" ! TMP=`cd "${SystemRoot}/Temp"; echo ${PWD}` ;; AIX ) VAR="A different value for AIX" DEFAULT_JDK=/ --- 132,144 ---- CYGWIN* ) VAR="A different value for Cygwin" DEFAULT_JDK="/cygdrive/c/Program\ Files/Java/jdk1.8.0" FILESEP="/" PATHSEP=";" ! TMP=`cd "${SYSTEMROOT}/Temp"; echo ${PWD}` ! x="cygpath -m $PWD" ! PWD=$(eval $x) ;; AIX ) VAR="A different value for AIX" DEFAULT_JDK=/
< prev index next >