1 # Copyright
2000, 2004 Free Software Foundation
, Inc.
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.
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.
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.
17 # This file was based
on jmisc.exp which in turn was written by
18 # Anthony Green.
(green@redhat.com
)
27 set srcfile $
{srcdir
}/$subdir
/$
{testfile
}.java
28 set binfile $
{objdir
}/$
{subdir
}/$
{testfile
}
29 if { [compile_java_from_source $
{srcfile
} $
{binfile
} "-g"] != "" } {
30 untested
"Couldn't compile ${srcfile}"
37 # Start with a fresh gdb.
41 gdb_reinitialize_dir $srcdir
/$subdir
43 gdb_test
"set print sevenbit-strings" ".*"
45 # Check that plain old
"main" works. The load should both set the
46 # language to java and
(since
--main
=jmain
), some how
set the scope to
49 # Where the breakpoint should always land
51 set bpmain "Breakpoint .* file .*jmain.java, line 5\."
54 setup_kfail *-*-* java/1567
55 gdb_test "break main" "${bpmain}"
57 # Check that an unqualified "main" works.
61 setup_kfail *-*-* java/1565
62 gdb_test "break jmain.main" "${bpmain}"
64 # Check that a fully qualified "main" works.
66 setup_xfail *-*-* gcc/16439
67 gdb_test "break \'${testfile}.main(java.lang.String\[\])\'" "${bpmain}"