1#
2# Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.
8#
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
27OS=`uname -s`
28case "$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    ;;
36esac
37
38TMP1=${TMP}/tmp1_$$
39FAIL=0;
40
41deny() {
42  case "$OS" in
43  Windows* ) chacl -d ${SID}:f $* ;;
44  * )        chmod 000 $*         ;;
45  esac
46}
47
48allow() {
49  case "$OS" in
50  Windows* ) chacl -g ${SID}:f $* ;;
51  * )        chmod 777 $*         ;;
52  esac 
53}
54
55runTest() {
56  ${TESTJAVA}/bin/java ${TESTVMOPTS} -cp ${TESTCLASSES} GetXSpace $* 
57  if [ $? -eq 0 ]
58  then echo "Passed"
59  else
60    echo "FAILED"
61    FAIL=`expr ${FAIL} + 1`
62  fi
63}
64
65# df output
66runTest
67 
68# readable file in an unreadable directory
69mkdir ${TMP1}
70touch ${TMP1}/foo
71deny ${TMP1}
72runTest ${TMP1}/foo
73allow ${TMP1}
74rm -rf ${TMP1}
75
76if [ ${FAIL} -ne 0 ]
77then 
78  echo ""
79  echo "${FAIL} test(s) failed"
80  exit 1
81fi
82