mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
Fix PR cli/740. * gdb.base/annota1.exp: Honor gdb,nosignals. * gdb.base/annota3.exp: Likewise.
This commit is contained in:
@ -1,3 +1,16 @@
|
|||||||
|
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
|
||||||
|
|
||||||
|
Fix PR cli/740.
|
||||||
|
* gdb.base/annota1.exp: Honor gdb,nosignals.
|
||||||
|
* gdb.base/annota3.exp: Likewise.
|
||||||
|
|
||||||
|
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
|
||||||
|
|
||||||
|
* gdb.ada/gnat_ada.gpr.in: Rename from here ...
|
||||||
|
* gdb.ada/gnat_ada.gin: ... to here.
|
||||||
|
* configure.in: Use gnat_ada.gin.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
|
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
|
||||||
|
|
||||||
* lib/java.exp: Update copyright notice.
|
* lib/java.exp: Update copyright notice.
|
||||||
|
@ -269,6 +269,11 @@ gdb_expect {
|
|||||||
# annotate-arg-value
|
# annotate-arg-value
|
||||||
# annotate-arg-end
|
# annotate-arg-end
|
||||||
#
|
#
|
||||||
|
|
||||||
|
if [target_info exists gdb,nosignals] {
|
||||||
|
unsupported "send SIGUSR1"
|
||||||
|
unsupported "backtrace @ signal handler"
|
||||||
|
} else {
|
||||||
send_gdb "signal SIGUSR1\n"
|
send_gdb "signal SIGUSR1\n"
|
||||||
gdb_expect {
|
gdb_expect {
|
||||||
-re "\r\n\032\032post-prompt\r\nContinuing with signal SIGUSR1.\r\n\r\n\032\032starting\r\n\r\n\032\032frames-invalid\r\n\r\n\032\032breakpoint 2\r\n\r\nBreakpoint 2, \r\n\032\032frame-begin 0 $hex\r\n\r\n\032\032frame-function-name\r\nhandle_USR1\r\n\032\032frame-args\r\n \\(\r\n\032\032arg-begin\r\nsig\r\n\032\032arg-name-end\r\n=\r\n\032\032arg-value -\r\n$decimal\r\n\032\032arg-end\r\n\\)\r\n\032\032frame-source-begin\r\n at \r\n\032\032frame-source-file\r\n${escapedsrcfile}\r\n\032\032frame-source-file-end\r\n:\r\n\032\032frame-source-line\r\n.*\r\n\032\032frame-source-end\r\n\r\n\r\n\032\032source.*annota1.c:.*:.*:beg:$hex\r\n\r\n\032\032frame-end\r\n\r\n\032\032stopped\r\n$gdb_prompt$" \
|
-re "\r\n\032\032post-prompt\r\nContinuing with signal SIGUSR1.\r\n\r\n\032\032starting\r\n\r\n\032\032frames-invalid\r\n\r\n\032\032breakpoint 2\r\n\r\nBreakpoint 2, \r\n\032\032frame-begin 0 $hex\r\n\r\n\032\032frame-function-name\r\nhandle_USR1\r\n\032\032frame-args\r\n \\(\r\n\032\032arg-begin\r\nsig\r\n\032\032arg-name-end\r\n=\r\n\032\032arg-value -\r\n$decimal\r\n\032\032arg-end\r\n\\)\r\n\032\032frame-source-begin\r\n at \r\n\032\032frame-source-file\r\n${escapedsrcfile}\r\n\032\032frame-source-file-end\r\n:\r\n\032\032frame-source-line\r\n.*\r\n\032\032frame-source-end\r\n\r\n\r\n\032\032source.*annota1.c:.*:.*:beg:$hex\r\n\r\n\032\032frame-end\r\n\r\n\032\032stopped\r\n$gdb_prompt$" \
|
||||||
@ -280,7 +285,6 @@ gdb_expect {
|
|||||||
timeout { fail "send SIGUSR1 (timeout)" }
|
timeout { fail "send SIGUSR1 (timeout)" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# test:
|
# test:
|
||||||
# annotate-signal-handler-caller
|
# annotate-signal-handler-caller
|
||||||
@ -299,6 +303,7 @@ gdb_expect {
|
|||||||
-re ".*$gdb_prompt$" { fail "backtrace @ signal handler" }
|
-re ".*$gdb_prompt$" { fail "backtrace @ signal handler" }
|
||||||
timeout { fail "backtrace @ signal handler (timeout)" }
|
timeout { fail "backtrace @ signal handler (timeout)" }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# delete all the breakpoints
|
# delete all the breakpoints
|
||||||
@ -446,6 +451,10 @@ gdb_expect {
|
|||||||
# It has been verified that other signals will be delivered. However,
|
# It has been verified that other signals will be delivered. However,
|
||||||
# rather than twiddle the test, I choose to leave it as-is as it
|
# rather than twiddle the test, I choose to leave it as-is as it
|
||||||
# exposes an interesting failure on hpux11.
|
# exposes an interesting failure on hpux11.
|
||||||
|
|
||||||
|
if [target_info exists gdb,nosignals] {
|
||||||
|
unsupported "signal sent"
|
||||||
|
} else {
|
||||||
setup_xfail hppa*-*-hpux11*
|
setup_xfail hppa*-*-hpux11*
|
||||||
send_gdb "signal SIGTRAP\n"
|
send_gdb "signal SIGTRAP\n"
|
||||||
gdb_expect {
|
gdb_expect {
|
||||||
@ -454,6 +463,7 @@ gdb_expect {
|
|||||||
-re ".*$gdb_prompt$" { fail "signal sent" }
|
-re ".*$gdb_prompt$" { fail "signal sent" }
|
||||||
timeout { fail "signal sent (timeout)" }
|
timeout { fail "signal sent (timeout)" }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Check for production of a core file and remove it!
|
# Check for production of a core file and remove it!
|
||||||
|
@ -217,6 +217,11 @@ gdb_expect_list "backtrace from shlibrary" "$gdb_prompt$" {
|
|||||||
#
|
#
|
||||||
# test printing a frame with some arguments:
|
# test printing a frame with some arguments:
|
||||||
#
|
#
|
||||||
|
|
||||||
|
if [target_info exists gdb,nosignals] {
|
||||||
|
unsupported "send SIGUSR1"
|
||||||
|
unsupported "backtrace @ signal handler"
|
||||||
|
} else {
|
||||||
send_gdb "signal SIGUSR1\n"
|
send_gdb "signal SIGUSR1\n"
|
||||||
gdb_expect_list "send SIGUSR1" "$gdb_prompt$" {
|
gdb_expect_list "send SIGUSR1" "$gdb_prompt$" {
|
||||||
"\r\n\032\032post-prompt\r\n"
|
"\r\n\032\032post-prompt\r\n"
|
||||||
@ -229,7 +234,6 @@ gdb_expect_list "send SIGUSR1" "$gdb_prompt$" {
|
|||||||
"\r\n\032\032stopped\r\n"
|
"\r\n\032\032stopped\r\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# test:
|
# test:
|
||||||
#
|
#
|
||||||
@ -246,6 +250,7 @@ gdb_expect_list "backtrace @ signal handler" "$gdb_prompt$" {
|
|||||||
"#2 .* printf \[^\r\n\]+\r\n"
|
"#2 .* printf \[^\r\n\]+\r\n"
|
||||||
"#3 .* main \[^\r\n\]+\r\n"
|
"#3 .* main \[^\r\n\]+\r\n"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# delete all the breakpoints
|
# delete all the breakpoints
|
||||||
@ -369,6 +374,10 @@ gdb_expect_list "breakpoint ignore count" "$gdb_prompt$" {
|
|||||||
# It has been verified that other signals will be delivered. However,
|
# It has been verified that other signals will be delivered. However,
|
||||||
# rather than twiddle the test, I choose to leave it as-is as it
|
# rather than twiddle the test, I choose to leave it as-is as it
|
||||||
# exposes an interesting failure on hpux11.
|
# exposes an interesting failure on hpux11.
|
||||||
|
|
||||||
|
if [target_info exists gdb,nosignals] {
|
||||||
|
unsupported "signal sent"
|
||||||
|
} else {
|
||||||
setup_xfail hppa*-*-hpux11*
|
setup_xfail hppa*-*-hpux11*
|
||||||
send_gdb "signal SIGTRAP\n"
|
send_gdb "signal SIGTRAP\n"
|
||||||
gdb_expect_list "signal sent" "$gdb_prompt$" {
|
gdb_expect_list "signal sent" "$gdb_prompt$" {
|
||||||
@ -382,6 +391,7 @@ gdb_expect_list "signal sent" "$gdb_prompt$" {
|
|||||||
"The program no longer exists.\r\n"
|
"The program no longer exists.\r\n"
|
||||||
"\r\n\032\032stopped\r\n"
|
"\r\n\032\032stopped\r\n"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Check for production of a core file and remove it!
|
# Check for production of a core file and remove it!
|
||||||
|
Reference in New Issue
Block a user