< prev index next >

test/java/rmi/registry/readTest/readTest.sh

Print this page




  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 #
  23 
  24 # @test
  25 # @bug 7102369 7094468 7100592
  26 # @library ../../testlibrary
  27 # @build TestLibrary
  28 # @summary remove java.rmi.server.codebase property parsing from registyimpl
  29 # @run shell readTest.sh

  30 
  31 OS=`uname -s`
  32 VER=`uname -r`
  33 ARGS=""
  34 REGARGS=""
  35 
  36 case "$OS" in
  37   SunOS | Linux | Darwin | AIX )
  38     PS=":"
  39     FS="/"
  40     CHMOD="${FS}bin${FS}chmod"
  41     FILEURL="file:"
  42     ;;
  43   Windows* )
  44     PS=";"
  45     FS="\\"
  46     CHMOD="chmod"
  47     FILEURL="file:/"
  48     if [ "$VER" -eq "5" ]; then
  49         ARGS="-Djdk.net.ephemeralPortRange.low=1024 -Djdk.net.ephemeralPortRange.high=65000"




  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 #
  23 
  24 # @test
  25 # @bug 7102369 7094468 7100592
  26 # @library ../../testlibrary
  27 # @build TestLibrary
  28 # @summary remove java.rmi.server.codebase property parsing from registyimpl
  29 # @run shell readTest.sh
  30 # @key intermittent
  31 
  32 OS=`uname -s`
  33 VER=`uname -r`
  34 ARGS=""
  35 REGARGS=""
  36 
  37 case "$OS" in
  38   SunOS | Linux | Darwin | AIX )
  39     PS=":"
  40     FS="/"
  41     CHMOD="${FS}bin${FS}chmod"
  42     FILEURL="file:"
  43     ;;
  44   Windows* )
  45     PS=";"
  46     FS="\\"
  47     CHMOD="chmod"
  48     FILEURL="file:/"
  49     if [ "$VER" -eq "5" ]; then
  50         ARGS="-Djdk.net.ephemeralPortRange.low=1024 -Djdk.net.ephemeralPortRange.high=65000"


< prev index next >