Imported Upstream version 7.9
[platform/upstream/gdb.git] / gdb / testsuite / gdb.java / jmain.exp
1 # Copyright 2000-2015 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 # This file was based on jmisc.exp which in turn was written by
17 # Anthony Green. (green@redhat.com)
18
19 load_lib "java.exp"
20
21 if { [skip_java_tests] } { continue }
22
23 standard_testfile .java
24 if {[compile_java_from_source $srcdir/$subdir/$srcfile $binfile "-g"] != ""} {
25     continue
26 }
27
28
29 # Start with a fresh gdb.
30
31 gdb_exit
32 gdb_start
33 gdb_reinitialize_dir $srcdir/$subdir
34
35 gdb_test "set print sevenbit-strings" ".*"
36
37 # Check that plain old "main" works.  The load should both set the
38 # language to java and (since --main=jmain), some how set the scope to
39 # jmain's main.
40
41 # Where the breakpoint should always land
42
43 set bpmain "Breakpoint .* file .*jmain.java, line 5\."
44
45 # Where GCC PR 16439 puts the breakpoint.
46 set earlybpmain "Breakpoint .* file .*jmain.java, line 4\."
47
48 gdb_load "${binfile}"
49 setup_kfail java/1567 *-*-*
50 gdb_test "break main" "${bpmain}"
51
52 # Check that an unqualified "main" works.
53
54 gdb_load "${binfile}"
55 setup_kfail java/1565 *-*-*
56 gdb_test "break jmain.main" "${bpmain}"
57
58 # Check that a fully qualified "main" works.
59 gdb_load "${binfile}"
60 set cmd "break ${testfile}.main(java.lang.String\[\])"
61 set msg $cmd
62 gdb_test_multiple $cmd $msg {
63     -re "${bpmain}\r\n$gdb_prompt $" {
64         pass $msg
65     }
66     -re "${earlybpmain}\r\n$gdb_prompt $" {
67         setup_xfail *-*-* gcc/16439
68         fail $msg
69     }
70     -re "Make breakpoint pending.* \\(y or \\\[n\\\]\\) $" {
71         gdb_test "n" "" ""
72
73         # Check again with a method signature at the end.
74         set cmd "break ${testfile}.main(java.lang.String\[\])void"
75         set msg $cmd
76         gdb_test_multiple $cmd $msg {
77             -re "${bpmain}\r\n$gdb_prompt $" {
78                 pass $msg
79             }
80             -re "${earlybpmain}\r\n$gdb_prompt $" {
81                 setup_xfail *-*-* gcc/16439
82                 fail $msg
83             }
84         }
85     }
86 }
87