| OLD | NEW |
| 1 # Copyright 2004, 2006-2012 Free Software Foundation, Inc. | 1 # Copyright 2004, 2006-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 4 # it under the terms of the GNU General Public License as published by |
| 5 # the Free Software Foundation; either version 3 of the License, or | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 # This file was written by Jeff Johnston. (jjohnstn@redhat.com) | 16 # This file was written by Jeff Johnston. (jjohnstn@redhat.com) |
| 17 # | 17 # |
| 18 | 18 |
| 19 if $tracelevel then { | |
| 20 strace $tracelevel | |
| 21 } | |
| 22 | |
| 23 load_lib "java.exp" | 19 load_lib "java.exp" |
| 24 | 20 |
| 25 if { [skip_java_tests] } { continue } | 21 if { [skip_java_tests] } { continue } |
| 26 | 22 |
| 27 set testfile "jprint" | 23 standard_testfile .java |
| 28 set srcfile ${srcdir}/$subdir/${testfile}.java | 24 if {[compile_java_from_source $srcdir/$subdir/$srcfile $binfile "-g"] != ""} { |
| 29 set binfile ${objdir}/${subdir}/${testfile} | |
| 30 if {[compile_java_from_source ${srcfile} ${binfile} "-g"] != ""} { | |
| 31 continue | 25 continue |
| 32 } | 26 } |
| 33 | 27 |
| 34 | 28 |
| 35 # Start with a fresh gdb. | 29 # Start with a fresh gdb. |
| 36 | 30 |
| 37 gdb_exit | 31 gdb_exit |
| 38 gdb_start | 32 gdb_start |
| 39 gdb_reinitialize_dir $srcdir/$subdir | 33 gdb_reinitialize_dir $srcdir/$subdir |
| 40 gdb_load $binfile | 34 gdb_load $binfile |
| 41 | 35 |
| 42 gdb_test "set print sevenbit-strings" ".*" | 36 gdb_test "set print sevenbit-strings" ".*" |
| 43 | 37 |
| 44 if [set_lang_java] then { | 38 if [set_lang_java] then { |
| 45 # Ref PR gdb:java/1565. Don't use the simpler "break jmisc.main". | 39 # Ref PR gdb:java/1565. Don't use the simpler "break jmisc.main". |
| 46 # As of 2004-02-24 it wasn't working and is being tested separatly. | 40 # As of 2004-02-24 it wasn't working and is being tested separatly. |
| 47 # Before GCJ 4.1 (approximately) the demangled name did not include | 41 # Before GCJ 4.1 (approximately) the demangled name did not include |
| 48 # a method signature; after that point it does include a trailing | 42 # a method signature; after that point it does include a trailing |
| 49 # signature. | 43 # signature. |
| 50 runto_main | 44 runto_main |
| 51 set function "${testfile}.main(java.lang.String\[\])" | 45 set function "${testfile}.main(java.lang.String\[\])" |
| 52 gdb_breakpoint "$function" { allow-pending } | 46 gdb_breakpoint "$function" allow-pending |
| 53 gdb_breakpoint "${function}void" { allow-pending } | 47 gdb_breakpoint "${function}void" allow-pending |
| 54 gdb_continue_to_breakpoint $function | 48 gdb_continue_to_breakpoint $function |
| 55 | 49 |
| 56 gdb_test "p jvclass.addprint(4,5,6)" "sum is 15\r\n.*" "unambiguous static c
all" | 50 gdb_test "p jvclass.addprint(4,5,6)" " = 15" "unambiguous static call" |
| 57 | 51 |
| 58 gdb_test "next" "" | 52 gdb_test "next" "" |
| 59 gdb_test "next" "" | 53 gdb_test "next" "" |
| 60 | 54 |
| 61 gdb_test "p x.print(44)" "x is 44\r\n.*" "single argument print call" | 55 gdb_test "p x.print(44)" " = 44" "single argument call" |
| 62 gdb_test "p x.print(22,33)" "y is 33\r\n.*" "double argument print call" | 56 gdb_test "p x.print(22,33)" " = 33" "double argument call" |
| 63 gdb_test "call x.dothat(55)" "new value is 58\r\n.*= 62.*" "virtual fn call" | 57 gdb_test "p x.dothat(55)" " = 62.*" "virtual fn call" |
| 64 gdb_test "p x.addprint(1,2,3)" "sum is 6\r\n.*" "inherited static call" | 58 gdb_test "p x.addprint(1,2,3)" "= 6" "inherited static call" |
| 65 gdb_test "call x.addk(44)" "adding k gives 121\r\n.*= 121.*" "inherited virt
ual fn call" | 59 gdb_test "p x.addk(44)" " = 121" "inherited virtual fn call" |
| 66 | 60 |
| 67 # Regression test for a crasher. | 61 # Regression test for a crasher. |
| 68 # GCC does not output location information for static class members, | 62 # GCC does not output location information for static class members, |
| 69 # so GDB will report these as "optimized out". See gcc/43260. | 63 # so GDB will report these as "optimized out". See gcc/43260. |
| 70 setup_xfail *-*-* gcc/43260 | 64 setup_xfail *-*-* gcc/43260 |
| 71 gdb_test "print *jprint.props" " = .*" "print a java.util.Properties" | 65 gdb_test "print *jprint.props" " = .*" "print a java.util.Properties" |
| 72 | 66 |
| 73 set test "print a java.lang.String" | 67 set test "print a java.lang.String" |
| 74 gdb_test_multiple "print jprint.hi" $test { | 68 gdb_test_multiple "print jprint.hi" $test { |
| 75 -re " = java.lang.String \"hi maude\"\r\n$gdb_prompt $" { | 69 -re " = java.lang.String \"hi maude\"\r\n$gdb_prompt $" { |
| 76 pass $test | 70 pass $test |
| 77 } | 71 } |
| 78 -re "There is no member named data\\.\r\n$gdb_prompt $" { | 72 -re "There is no member named data\\.\r\n$gdb_prompt $" { |
| 79 # GCJ system debug info for java.lang.String is not installed. | 73 # GCJ system debug info for java.lang.String is not installed. |
| 80 xfail $test | 74 xfail $test |
| 81 } | 75 } |
| 82 } | 76 } |
| 83 } | 77 } |
| OLD | NEW |