* lib/gdb.exp (gdb_compile_test): New.
[external/binutils.git] / gdb / testsuite / gdb.java / jmisc.exp
1 # Copyright 2000, 2004, 2006, 2007, 2008, 2009 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 written by Anthony Green. (green@redhat.com)
17 #
18
19 if $tracelevel then {
20         strace $tracelevel
21 }
22
23 load_lib "java.exp"
24
25 if { [skip_java_tests] } { continue }
26
27 set testfile "jmisc"
28 set srcfile ${srcdir}/$subdir/${testfile}.java
29 set binfile ${objdir}/${subdir}/${testfile}
30 if {[compile_java_from_source ${srcfile} ${binfile} "-g"] != ""} {
31     continue
32 }
33
34 # Set the current language to java.  This counts as a test.  If it
35 # fails, then we skip the other tests.
36
37 proc set_lang_java {} {
38     global gdb_prompt
39     global binfile objdir subdir
40
41     verbose "loading file '$binfile'"
42     gdb_load $binfile
43
44     send_gdb "set language java\n"
45     gdb_expect {
46         -re ".*$gdb_prompt $" {}
47         timeout { fail "set language java (timeout)" ; return 0 }
48     }
49
50     return [gdb_test "show language" ".* source language is \"java\".*" \
51         "set language to \"java\""]
52 }
53
54 set prms_id 0
55 set bug_id 0
56
57 # Start with a fresh gdb.
58
59 gdb_exit
60 gdb_start
61 gdb_reinitialize_dir $srcdir/$subdir
62
63 gdb_test "set print sevenbit-strings" ".*"
64
65 if ![set_lang_java] then {
66     # Ref PR gdb:java/1565.  Don't use the simpler "break jmisc.main".
67     # As of 2004-02-24 it wasn't working and is being tested separatly.
68     # Before GCJ 4.1 (approximately) the demangled name did not include
69     # a method signature; after that point it does include a trailing
70     # signature.
71     runto_main
72     set function "${testfile}.main(java.lang.String\[\])"
73     gdb_breakpoint "\'$function\'" { allow-pending }
74     gdb_breakpoint "\'${function}void\'" { allow-pending }
75     gdb_continue_to_breakpoint $function
76
77     send_gdb "ptype jmisc\n"   
78     gdb_expect {   
79         -re "type = class jmisc  extends java.lang.Object \{\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\);\[\r\n\ \t]+jmisc\\(\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $"
80             { pass "ptype jmisc" }
81         -re "type = class jmisc  extends java.lang.Object \{\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\)void;\[\r\n\ \t]+jmisc\\(\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $" {
82             # Just because GCC includes the signature doesn't mean we
83             # should print it here.  We already show the return type.
84             kfail "ptype jmisc" gdb/2215
85         }
86         -re ".*$gdb_prompt $"             { fail "ptype jmisc" }
87         timeout { fail "ptype jmisc (timeout)" ; return }
88     }
89
90     send_gdb "p args\n"
91     gdb_expect {   
92         -re "\\\$1 = java\.lang\.String\\\[]@\[a-f0-9]+\[\r\n\ \t]+$gdb_prompt $"                                        { pass "p args" }
93         -re ".*$gdb_prompt $"             { fail "p args" }
94         timeout { fail "p args (timeout)" ; return }
95     }
96
97     send_gdb "p *args\n"
98     gdb_expect {   
99         -re "\\\$2 = \{length: 0\}\[\r\n\ \t]+$gdb_prompt $"                                                             { pass "p *args" }
100         -re "\\\$2 = cannot find java.lang.Object.*$gdb_prompt $" {
101             # Sometimes GCC 4.x does not emit the necessary information
102             # about java.lang.Object.
103             kfail "p *args" gdb/2214
104         }
105         -re ".*$gdb_prompt $"             { fail "p *args" }
106         timeout { fail "p *args (timeout)" ; return }
107     }
108
109     # The idea of running to 'exit' is that 'exit' is in a different
110     # objfile from the rest of the program (provided that program is
111     # linked normally with a shared libc).  That causes gdb to examine
112     # fresh objfiles.  There is nothing important about 'exit'
113     # semantics; it could be any symbol that is in a shared library.
114     # -- chastain 2003-08-06
115
116     if [gdb_breakpoint exit] {
117         pass "break exit"
118     }
119     gdb_test_multiple "continue" "continue to exit" {
120         -re ".*Breakpoint $decimal, .*exit.*$gdb_prompt $" {
121             pass "continue to exit"
122         }
123         -re ".*internal-error: sect_index_text not initialized.*\\(y or n\\) " {
124             # gdb choked on the "anonymous objfile" (probably).
125             kfail "gdb/1322" "continue to exit"
126             # get back to the gdb prompt
127             gdb_test_multiple "no" "internal sync 1" {
128                 -re ".*\\(y or n\\) " {
129                     gdb_test_multiple "no" "internal sync 2" {
130                         -re ".*$gdb_prompt $" { ; }
131                     }
132                 }
133             }
134         }
135     }
136 }