< prev index next >

test/java/io/File/basic.sh

Print this page
rev 1541 : 8003890: corelibs test scripts should pass TESTVMOPTS
Reviewed-by: chegar, alanb
Contributed-by: Mark Sheppard <mark.sheppard@oracle.com>


  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 #
  25 
  26 #
  27 
  28 if [ "x$TESTJAVA" = x ]; then
  29   TESTJAVA=$1; shift
  30   TESTCLASSES=.
  31 fi
  32 
  33 rm -rf x.Basic.*
  34 rm -f x.Basic.non
  35 echo xyzzy > x.Basic.rw
  36 touch x.Basic.ro; chmod ugo-w x.Basic.ro
  37 mkdir x.Basic.dir
  38 if $TESTJAVA/bin/java $* -classpath $TESTCLASSES Basic; then
  39   [ -f x.Basic.rw ] && (echo "x.Basic.rw not deleted"; exit 1)
  40   ([ -d x.Basic.dir ] || [ \! -d x.Basic.dir2 ]) \
  41     && (echo "x.Basic.dir not renamed"; exit 1)
  42   [ \! -d x.Basic.nonDir ] && (echo "x.Basic.nonDir not created"; exit 1)
  43   [ -f x.Basic.non ] && (echo "x.Basic.non not deleted"; exit 1)
  44   exit 0
  45 else
  46   exit 1
  47 fi


  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 #
  25 
  26 #
  27 
  28 if [ "x$TESTJAVA" = x ]; then
  29   TESTJAVA=$1; shift
  30   TESTCLASSES=.
  31 fi
  32 
  33 rm -rf x.Basic.*
  34 rm -f x.Basic.non
  35 echo xyzzy > x.Basic.rw
  36 touch x.Basic.ro; chmod ugo-w x.Basic.ro
  37 mkdir x.Basic.dir
  38 if $TESTJAVA/bin/java ${TESTVMOPTS} $* -classpath "$TESTCLASSES" Basic; then
  39   [ -f x.Basic.rw ] && (echo "x.Basic.rw not deleted"; exit 1)
  40   ([ -d x.Basic.dir ] || [ \! -d x.Basic.dir2 ]) \
  41     && (echo "x.Basic.dir not renamed"; exit 1)
  42   [ \! -d x.Basic.nonDir ] && (echo "x.Basic.nonDir not created"; exit 1)
  43   [ -f x.Basic.non ] && (echo "x.Basic.non not deleted"; exit 1)
  44   exit 0
  45 else
  46   exit 1
  47 fi
< prev index next >