1# Copyright 2000, 2004 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 # 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. 71 runto "\'${testfile}.main(java.lang.String\[\])\'" 72 73 send_gdb "ptype jmisc\n" 74 gdb_expect { 75 -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 $" { pass "ptype jmisc" } 76 -re ".*$gdb_prompt $" { fail "ptype jmisc" } 77 timeout { fail "ptype jmisc (timeout)" ; return } 78 } 79 80 send_gdb "p args\n" 81 gdb_expect { 82 -re "\\\$1 = java\.lang\.String\\\[]@\[a-f0-9]+\[\r\n\ \t]+$gdb_prompt $" { pass "p args" } 83 -re ".*$gdb_prompt $" { fail "p args" } 84 timeout { fail "p args (timeout)" ; return } 85 } 86 87 send_gdb "p *args\n" 88 gdb_expect { 89 -re "\\\$2 = \{length: 0\}\[\r\n\ \t]+$gdb_prompt $" { pass "p *args" } 90 -re ".*$gdb_prompt $" { fail "p *args" } 91 timeout { fail "p *args (timeout)" ; return } 92 } 93} 94