0N/A#!/bin/sh
0N/A
0N/A#
2362N/A# Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A
0N/A# @test
0N/A# @bug 6364894
0N/A# @run shell FileOpen.sh
0N/A# @summary Test to ensure that opening of hidden Vs non-hidden,
0N/A# read/write Vs read-only files for writing works as expected.
0N/A
0N/A
0N/A# We use a TMP directory on a local disk because this test
0N/A# requires that the file to be tested be present on the local disk,
0N/A# not on a samba mounted drive or on a drive that is mapped.
0N/A# The cmd 'attrib' works only on the local files.
0N/ATMP="C:\TEMP"
0N/Ahfile=${TMP}"\random_file1.txt"
0N/AATTRIB=${SystemRoot}"\system32\attrib.exe"
0N/A
0N/AOS=`uname -s`
0N/Acase "$OS" in
0N/A Windows_* )
0N/A if [ ! -d ${TMP} ] ; then
0N/A echo "Could not find the directory-" ${TMP} "- passing test"
0N/A exit 0;
0N/A fi
0N/A ${TESTJAVA}/bin/javac -d . ${TESTSRC}\\FileOpenPos.java
0N/A ${TESTJAVA}/bin/javac -d . ${TESTSRC}\\FileOpenNeg.java
0N/A
0N/A echo "Opening Writable Normal File.."
0N/A ${TESTJAVA}/bin/java FileOpenPos ${hfile}
0N/A
0N/A echo "Opening Writable Hidden File.."
0N/A ${ATTRIB} +h ${hfile}
0N/A ${TESTJAVA}/bin/java FileOpenNeg ${hfile}
0N/A
0N/A echo "Opening Read-Only Normal File.."
0N/A ${ATTRIB} -h ${hfile}
0N/A ${ATTRIB} +r ${hfile}
0N/A ${TESTJAVA}/bin/java FileOpenNeg ${hfile}
0N/A
0N/A echo "Opening Read-Only Hidden File.."
0N/A ${ATTRIB} +h ${hfile}
0N/A ${TESTJAVA}/bin/java FileOpenNeg ${hfile}
0N/A
0N/A rm -f ${hfile}
0N/A exit
0N/A ;;
0N/A
0N/A * )
0N/A echo "This test is not intended for this OS - passing test"
0N/A exit 0
0N/A ;;
0N/Aesac