run copyright.sh for 2011.
[external/binutils.git] / gdb / testsuite / gdb.java / jmisc.exp
1 # Copyright 2000, 2004, 2006, 2007, 2008, 2009, 2010, 2011
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 <http://www.gnu.org/licenses/>.
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
36 # Start with a fresh gdb.
37
38 gdb_exit
39 gdb_start
40 gdb_reinitialize_dir $srcdir/$subdir
41 gdb_load $binfile
42
43 gdb_test "set print sevenbit-strings" ".*"
44
45 if [set_lang_java] then {
46     # Ref PR gdb:java/1565.  Don't use the simpler "break jmisc.main".
47     # As of 2004-02-24 it wasn't working and is being tested separatly.
48     # Before GCJ 4.1 (approximately) the demangled name did not include
49     # a method signature; after that point it does include a trailing
50     # signature.
51     runto_main
52     set function "${testfile}.main(java.lang.String\[\])"
53     gdb_breakpoint "$function" { allow-pending }
54     gdb_breakpoint "${function}void" { allow-pending }
55     gdb_continue_to_breakpoint $function
56
57     gdb_test_multiple "ptype jmisc" "ptype jmisc" {
58         -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 $" {
59             pass "ptype jmisc"
60         }
61         -re "type = class jmisc  extends java.lang.Object \{\[\r\n\ \t]+jmisc\\(\\);\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $" {
62             pass "ptype jmisc"
63         }
64     }
65
66     gdb_test "p args" \
67         "\\\$1 = java\.lang\.String\\\[]@\[a-f0-9]+"
68
69     gdb_test_multiple "p *args" "p *args" {
70         -re "\\\$2 = \{length: 0\}\[\r\n\ \t]+$gdb_prompt $" {
71             pass "p *args"
72         }
73         -re "\\\$2 = cannot find java.lang.Object.*$gdb_prompt $" {
74             # Sometimes GCC 4.x does not emit the necessary information
75             # about java.lang.Object.
76             kfail "p *args" gdb/2214
77         }
78     }
79
80     # The idea of running to 'exit' is that 'exit' is in a different
81     # objfile from the rest of the program (provided that program is
82     # linked normally with a shared libc).  That causes gdb to examine
83     # fresh objfiles.  There is nothing important about 'exit'
84     # semantics; it could be any symbol that is in a shared library.
85     # -- chastain 2003-08-06
86
87     if [gdb_breakpoint exit] {
88         pass "break exit"
89     }
90     gdb_test_multiple "continue" "continue to exit" {
91         -re ".*Breakpoint $decimal, .*exit.*$gdb_prompt $" {
92             pass "continue to exit"
93         }
94         -re ".*internal-error: sect_index_text not initialized.*\\(y or n\\) " {
95             # gdb choked on the "anonymous objfile" (probably).
96             kfail "gdb/1322" "continue to exit"
97             # get back to the gdb prompt
98             gdb_test_multiple "no" "internal sync 1" {
99                 -re ".*\\(y or n\\) " {
100                     gdb_test_multiple "no" "internal sync 2" {
101                         -re ".*$gdb_prompt $" { ; }
102                     }
103                 }
104             }
105         }
106     }
107 }