Add unsupported calls where needed
A number of tests will exit early without saying why. This patch adds "unsupported" at spots like this that I could readily find. There are definitely more of these; for example dw2-ranges.exp fails silently because a compilation fails. I didn't attempt to address these as that is a much larger task.
This commit is contained in:
parent
c7ccb47177
commit
e0a8643d2c
8 changed files with 9 additions and 2 deletions
|
@ -26,7 +26,7 @@ switch -glob -- [istarget] {
|
|||
set testfile "pa64-nullify"
|
||||
}
|
||||
"*" {
|
||||
verbose "Skipping hppa nullification tests."
|
||||
unsupported "Skipping hppa nullification tests."
|
||||
return
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ if { [istarget powerpc-*] } {
|
|||
# with the source file powerpc64-trap.s.
|
||||
set expected_traps 5
|
||||
} else {
|
||||
verbose "Skipping ${gdb_test_file_name}."
|
||||
unsupported "Skipping powerpc-specific tests"
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
# Test only on boards that actually use the remote protocol.
|
||||
if {[target_info gdb_protocol] != "remote"
|
||||
&& [target_info gdb_protocol] != "extended-remote"} {
|
||||
unsupported "requires remote protocol"
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@ require allow_shlib_tests
|
|||
|
||||
set gdbserver_reconnect_p 1
|
||||
if { [info proc gdb_reconnect] == "" } {
|
||||
unsupported "requires gdbserver reconnect"
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@ if [info exists COMPILE] {
|
|||
lappend opts debug optimize=-O2
|
||||
} elseif {![is_x86_like_target]} {
|
||||
# This test can only be run on x86 targets.
|
||||
unsupported "needs x86-like target"
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
|
||||
# This test is only for extended remote targets.
|
||||
if {[target_info gdb_protocol] != "extended-remote"} {
|
||||
unsupported "requires extended-remote"
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -40,6 +41,7 @@ require {is_any_target "*-*-linux*" "*-*-openbsd*"}
|
|||
# And we need to be able to reconnect to gdbserver.
|
||||
set gdbserver_reconnect_p 1
|
||||
if { [info proc gdb_reconnect] == "" } {
|
||||
unsupported "requires gdbserver reconnect"
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
|
||||
set gdbserver_reconnect_p 1
|
||||
if { [info proc gdb_reconnect] == "" } {
|
||||
unsupported "requires gdbserver reconnect"
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
|
@ -115,6 +115,7 @@ if { ![runto_main] } {
|
|||
|
||||
if { ![gdb_target_supports_trace] } {
|
||||
# Test cannot run on this target.
|
||||
unsupported "test requires trace"
|
||||
return 1
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue