summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.java/jnpe.exp
blob: f2895f6a3182f0097dde8cf2bdb2111743f61ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright 2009, 2010 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

if $tracelevel then {
  strace $tracelevel
}

load_lib "java.exp"

set testfile "jnpe"
set srcfile ${testfile}.java
set binfile ${objdir}/${subdir}/${testfile}
if  { [compile_java_from_source ${srcdir}/$subdir/${srcfile} ${binfile} "-g"] != "" } {
    untested "Couldn't compile ${srcdir}/$subdir/${srcfile}"
    return -1
}

# Start with a fresh gdb.

clean_restart $testfile

set line [gdb_get_line_number "break here" $testfile.java]
if ![runto "$testfile.java:$line"] then {
    perror "couldn't run to jnpe.main"
    continue
} 

# See whether we have the needed unwinder hooks.
set ok 1
gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook in java" {
    -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
	pass "check for unwinder hook in java"
    }
    -re "No symbol .* in current context.?\r\n$gdb_prompt $" {
	# Pass the test so we don't get bogus fails in the results.
	setup_xfail *-*-*
	fail "check for unwinder hook in java"
	set ok 0
    }
}
if {!$ok} {
    unsupported "jnpe.exp could not find _Unwind_DebugHook"
    return -1
}

gdb_test "handle SIGSEGV nostop noprint" \
  "SIGSEGV.*fault" \
  "disable SIGSEGV for next-over-NPE"

# The line where we stop differs according to gcj; just check that we
# did not already execute the catch point.  This is done in a somewhat
# funny way due to other gcj debuginfo oddities that don't
# meaningfully affect the user's experience.

gdb_test "next" \
  ".*" \
  "next over NPE"

set line [gdb_get_line_number "stop point"]
gdb_breakpoint $line
gdb_test "continue" "Continuing.\[\r\n\]*success\[\r\n\]*Breakpoint .*:$line\[\r\n\]*.*// stop point\[\r\n\]*" \
  "continue to success for next-over-NPE"