< prev index next >

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

Print this page
rev 59964 : imported patch 6501010


  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 | Darwin ) 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
  50   Windows* ) chacl -g ${SID}:f $* ;;
  51   * )        chmod 777 $*         ;;
  52   esac
  53 }




  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 | Darwin ) TMP=/tmp ;;
  30   Windows_98 )    return    ;;
  31   CYGWIN_* )      TMP="c:/temp" ;;
  32   Windows* )      SID=`sid`; TMP="c:/temp"  ;;
  33   * )
  34     echo "Unrecognized system! ${OS}"
  35     exit 1
  36     ;;
  37 esac
  38 
  39 TMP1=${TMP}/tmp1_$$
  40 FAIL=0;
  41 
  42 deny() {
  43   case "$OS" in
  44   Windows* ) chacl -d ${SID}:f $* ;;
  45   * )        chmod 000 $*         ;;
  46   esac
  47 }
  48 
  49 allow() {
  50   case "$OS" in
  51   Windows* ) chacl -g ${SID}:f $* ;;
  52   * )        chmod 777 $*         ;;
  53   esac
  54 }


< prev index next >