"gdb/testsuite/lib/pascal.exp",
"gdb/testsuite/lib/perftest.exp",
"gdb/testsuite/lib/prelink-support.exp",
-"gdb/testsuite/lib/selftest-support.exp",
"gdb/testsuite/lib/trace-support.exp",
# IGNORE (document reason in trailing comment):
"gdb/testsuite/gdb.stabs", # To be removed.
# wrapper.
proc selftest_libtool_get_real_gdb_executable { executable } {
- if [_selftest_gdb_is_installed] {
+ if {[_selftest_gdb_is_installed]} {
return $executable
}
- if ![_selftest_has_libtool] {
+ if {![_selftest_has_libtool]} {
return $executable
}
# ... or seemingly testing with a cross debugger? Likely GDB
# wouldn't be able to debug itself then...
- if ![isnative] {
+ if {![isnative]} {
return
}
# ... or with a stub-like server? I.e., gdbserver + "target
# remote"? In that case we won't be able to pass command line
# arguments to GDB, and _selftest_setup wants to do exactly that.
- if [use_gdb_stub] {
+ if {[use_gdb_stub]} {
return
}