|
1 #!/bin/sh |
|
2 |
|
3 # |
|
4 # Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved. |
|
5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
6 # |
|
7 # This code is free software; you can redistribute it and/or modify it |
|
8 # under the terms of the GNU General Public License version 2 only, as |
|
9 # published by the Free Software Foundation. |
|
10 # |
|
11 # This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 # version 2 for more details (a copy is included in the LICENSE file that |
|
15 # accompanied this code). |
|
16 # |
|
17 # You should have received a copy of the GNU General Public License version |
|
18 # 2 along with this work; if not, write to the Free Software Foundation, |
|
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 # |
|
21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 # CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 # have any questions. |
|
24 # |
|
25 |
|
26 |
|
27 # @test |
|
28 # @bug 6265810 |
|
29 # @run shell jrunscript-cpTest.sh |
|
30 # @summary Test -cp option to set classpath |
|
31 |
|
32 . ${TESTSRC-.}/common.sh |
|
33 |
|
34 setup |
|
35 |
|
36 rm -f Hello.class |
|
37 ${JAVAC} ${TESTSRC}/Hello.java -d . |
|
38 |
|
39 # we check whether classpath setting for app classes |
|
40 # work with jrunscript. Script should be able to |
|
41 # access Java class "Hello". |
|
42 |
|
43 ${JRUNSCRIPT} -cp . <<EOF |
|
44 var v; |
|
45 try { v = new Packages.Hello(); } catch (e) { println(e); exit(1) } |
|
46 if (v.string != 'hello') { println("Unexpected property value"); exit(1); } |
|
47 EOF |
|
48 |
|
49 if [ $? -ne 0 ]; then |
|
50 exit 1 |
|
51 fi |
|
52 |
|
53 # -classpath and -cp are synonyms |
|
54 |
|
55 ${JRUNSCRIPT} -classpath . <<EOF |
|
56 var v; |
|
57 try { v = new Packages.Hello(); } catch (e) { println(e); exit(1) } |
|
58 if (v.string != 'hello') { println("unexpected property value"); exit(1); } |
|
59 EOF |
|
60 |
|
61 if [ $? -ne 0 ]; then |
|
62 exit 1 |
|
63 fi |
|
64 |
|
65 rm -f Hello.class |
|
66 echo "Passed" |
|
67 exit 0 |