Obvious fix. Add missing ChangeLog entry for gdb.c++/ovldbreak.exp
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.java / jmisc.exp
CommitLineData
9d273ca3
AG
1# Copyright (C) 2000 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
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 {
69 runto ${testfile}.main
70
71 send_gdb "ptype jmisc\n"
72 gdb_expect {
73 -re "type = class jmisc extends java.lang.Object \{\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\);\[\r\n\ \t]+void <init>\\(void\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $" { pass "ptype jmisc" }
74 -re ".*$gdb_prompt $" { fail "ptype jmisc" }
75 timeout { fail "ptype jmisc (timeout)" ; return }
76 }
77
78 send_gdb "p args\n"
79 gdb_expect {
80 -re "\\\$1 = java\.lang\.String\\\[]@\[a-f0-9]+\[\r\n\ \t]+$gdb_prompt $" { pass "p args" }
81 -re ".*$gdb_prompt $" { fail "p args" }
82 timeout { fail "p args (timeout)" ; return }
83 }
84
85 send_gdb "p *args\n"
86 gdb_expect {
87 -re "\\\$2 = \{length: 0\}\[\r\n\ \t]+$gdb_prompt $" { pass "p *args" }
88 -re ".*$gdb_prompt $" { fail "p *args" }
89 timeout { fail "p *args (timeout)" ; return }
90 }
91}
This page took 0.096099 seconds and 4 git commands to generate.