test/sun/net/www/protocol/jar/getcontenttype.sh

Print this page

        

@@ -30,8 +30,22 @@
         shift 
 fi
 if [ x"$TESTCLASSES" = x ]; then TESTCLASSES=.; fi
 if [ x"$TESTSRC" = x ]; then TESTSRC=.; fi
 
+OS=`uname -s`;
+# Set classpath separator
+case "$OS" in
+        Windows* | CYGWIN* )
+        SEP=";"
+        FS="\\"
+        ;;
+
+        * )
+        SEP=":"
+        FS="/"
+        ;;
+esac
+
 # now start the test
-${TESTJAVA}/bin/java ${TESTVMOPTS} -Djava.ext.dirs=$TESTSRC -cp $TESTCLASSES GetContentType
+${TESTJAVA}/bin/java ${TESTVMOPTS} -cp ${TESTSRC}${FS}resource.jar${SEP}${TESTCLASSES} GetContentType