< prev index next >

test/jdk/java/io/File/GetXSpace.sh

Print this page
rev 59105 : imported patch corelibs


   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  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 #
  25 
  26 # set platform-dependent variable
  27 OS=`uname -s`
  28 case "$OS" in
  29   SunOS | Linux ) TMP=/tmp  ;;
  30   Windows_98 )    return    ;;
  31   Windows* )      SID=`sid`; TMP="c:/temp"  ;;
  32   * )
  33     echo "Unrecognized system!"
  34     exit 1
  35     ;;
  36 esac
  37 
  38 TMP1=${TMP}/tmp1_$$
  39 FAIL=0;
  40 
  41 deny() {
  42   case "$OS" in
  43   Windows* ) chacl -d ${SID}:f $* ;;
  44   * )        chmod 000 $*         ;;
  45   esac
  46 }
  47 
  48 allow() {
  49   case "$OS" in




   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  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 #
  25 
  26 # set platform-dependent variable
  27 OS=`uname -s`
  28 case "$OS" in
  29   Linux ) TMP=/tmp  ;;
  30   Windows_98 )    return    ;;
  31   Windows* )      SID=`sid`; TMP="c:/temp"  ;;
  32   * )
  33     echo "Unrecognized system!"
  34     exit 1
  35     ;;
  36 esac
  37 
  38 TMP1=${TMP}/tmp1_$$
  39 FAIL=0;
  40 
  41 deny() {
  42   case "$OS" in
  43   Windows* ) chacl -d ${SID}:f $* ;;
  44   * )        chmod 000 $*         ;;
  45   esac
  46 }
  47 
  48 allow() {
  49   case "$OS" in


< prev index next >