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