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