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