author | jbachorik |
Tue, 21 Jan 2014 13:04:55 +0100 | |
changeset 22353 | d09e3ff5fd63 |
parent 14786 | a9f61e0cbe61 |
child 23010 | 6dadb192ad81 |
permissions | -rw-r--r-- |
2 | 1 |
# |
5506 | 2 |
# Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 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 |
|
50 |
Windows* ) chacl -g ${SID}:f $* ;; |
|
51 |
* ) chmod 777 $* ;; |
|
52 |
esac |
|
53 |
} |
|
54 |
||
55 |
runTest() { |
|
14786
a9f61e0cbe61
8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents:
5506
diff
changeset
|
56 |
${TESTJAVA}/bin/java ${TESTVMOPTS} -cp ${TESTCLASSES} GetXSpace $* |
2 | 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 |
|
66 |
runTest |
|
67 |
||
68 |
# readable file in an unreadable directory |
|
69 |
mkdir ${TMP1} |
|
70 |
touch ${TMP1}/foo |
|
71 |
deny ${TMP1} |
|
72 |
runTest ${TMP1}/foo |
|
73 |
allow ${TMP1} |
|
74 |
rm -rf ${TMP1} |
|
75 |
||
76 |
if [ ${FAIL} -ne 0 ] |
|
77 |
then |
|
78 |
echo "" |
|
79 |
echo "${FAIL} test(s) failed" |
|
80 |
exit 1 |
|
81 |
fi |