duke@0
|
1 #!/bin/sh
|
duke@0
|
2
|
duke@0
|
3 #
|
duke@0
|
4 # Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
|
duke@0
|
5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
duke@0
|
6 #
|
duke@0
|
7 # This code is free software; you can redistribute it and/or modify it
|
duke@0
|
8 # under the terms of the GNU General Public License version 2 only, as
|
duke@0
|
9 # published by the Free Software Foundation.
|
duke@0
|
10 #
|
duke@0
|
11 # This code is distributed in the hope that it will be useful, but WITHOUT
|
duke@0
|
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
duke@0
|
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
duke@0
|
14 # version 2 for more details (a copy is included in the LICENSE file that
|
duke@0
|
15 # accompanied this code).
|
duke@0
|
16 #
|
duke@0
|
17 # You should have received a copy of the GNU General Public License version
|
duke@0
|
18 # 2 along with this work; if not, write to the Free Software Foundation,
|
duke@0
|
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
duke@0
|
20 #
|
duke@0
|
21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
duke@0
|
22 # CA 95054 USA or visit www.sun.com if you need additional information or
|
duke@0
|
23 # have any questions.
|
duke@0
|
24 #
|
duke@0
|
25
|
duke@0
|
26 #
|
duke@0
|
27 # @test
|
duke@0
|
28 # @bug 4940642
|
duke@0
|
29 # @summary Check for -help and -X flags
|
duke@0
|
30 # @author Martin Buchholz
|
duke@0
|
31 #
|
duke@0
|
32 # @run shell Help.sh
|
duke@0
|
33
|
duke@0
|
34 # To run this test manually, simply do ./MineField.sh
|
duke@0
|
35
|
duke@0
|
36
|
duke@0
|
37 . ${TESTSRC-.}/Util.sh
|
duke@0
|
38
|
duke@0
|
39 set -u
|
duke@0
|
40
|
duke@0
|
41 DiagnosticsInEnglishPlease
|
duke@0
|
42
|
duke@0
|
43 HELP="`$javac ${TESTTOOLVMOPTS} -help 2>&1`"
|
duke@0
|
44 XHELP="`$javac ${TESTTOOLVMOPTS} -X 2>&1`"
|
duke@0
|
45
|
duke@0
|
46 #----------------------------------------------------------------
|
duke@0
|
47 # Standard options
|
duke@0
|
48 #----------------------------------------------------------------
|
duke@0
|
49 for opt in \
|
duke@0
|
50 "-X " \
|
duke@0
|
51 "-J" \
|
duke@0
|
52 "-classpath " \
|
duke@0
|
53 "-cp " \
|
duke@0
|
54 "-bootclasspath " \
|
duke@0
|
55 "-sourcepath ";
|
duke@0
|
56 do
|
duke@0
|
57 case "$HELP" in *"$opt"*) ;; *) Fail "Bad help output" ;; esac
|
duke@0
|
58 done
|
duke@0
|
59
|
duke@0
|
60 #----------------------------------------------------------------
|
duke@0
|
61 # Non-standard options
|
duke@0
|
62 #----------------------------------------------------------------
|
duke@0
|
63 for opt in \
|
duke@0
|
64 "-Xbootclasspath/p:";
|
duke@0
|
65 do
|
duke@0
|
66 case "$XHELP" in *"$opt"*) ;; *) Fail "Bad help output" ;; esac
|
duke@0
|
67 done
|
duke@0
|
68
|
duke@0
|
69 Bottom Line
|