diff options
author | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2018-03-23 10:38:23 +0100 |
---|---|---|
committer | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2018-03-23 10:38:23 +0100 |
commit | 079670b94ade4b5792fa74b29a6b5b4626f27185 (patch) | |
tree | 4c960fdc6f66dc10cd52ade894002a44073d0e22 /gdb/testsuite/gdb.threads | |
parent | a2b2bc12af45f48617729c1413a1a01c0ee957ca (diff) | |
download | gdb-079670b94ade4b5792fa74b29a6b5b4626f27185.zip gdb-079670b94ade4b5792fa74b29a6b5b4626f27185.tar.gz gdb-079670b94ade4b5792fa74b29a6b5b4626f27185.tar.bz2 |
Testsuite: fully migrate to use_gdb_stub convenience func
In the GDB test suite, there are still multiple invocations of
"target_info exists use_gdb_stub". However, the recommended way of
checking for use_gdb_stub is to call the convenience function of the same
name.
Replace these occurrences and just call "use_gdb_stub" instead.
gdb/testsuite/ChangeLog:
* gdb.ada/exec_changed.exp: Replace "target_info exists
use_gdb_stub" by "use_gdb_stub".
* gdb.ada/start.exp: Likewise.
* gdb.base/async-shell.exp: Likewise.
* gdb.base/attach-pie-misread.exp: Likewise.
* gdb.base/attach-wait-input.exp: Likewise.
* gdb.base/break-entry.exp: Likewise.
* gdb.base/break-interp.exp: Likewise.
* gdb.base/dprintf-detach.exp: Likewise.
* gdb.base/nostdlib.exp: Likewise.
* gdb.base/solib-nodir.exp: Likewise.
* gdb.base/statistics.exp: Likewise.
* gdb.base/testenv.exp: Likewise.
* gdb.mi/mi-exec-run.exp: Likewise.
* gdb.mi/mi-start.exp: Likewise.
* gdb.multi/dummy-frame-restore.exp: Likewise.
* gdb.multi/multi-arch-exec.exp: Likewise.
* gdb.multi/multi-arch.exp: Likewise.
* gdb.multi/tids.exp: Likewise.
* gdb.multi/watchpoint-multi.exp: Likewise.
* gdb.python/py-events.exp: Likewise.
* gdb.threads/attach-into-signal.exp: Likewise.
* gdb.threads/attach-stopped.exp: Likewise.
* gdb.threads/threadapply.exp: Likewise.
* lib/selftest-support.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.threads')
-rw-r--r-- | gdb/testsuite/gdb.threads/attach-into-signal.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/attach-stopped.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/threadapply.exp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.threads/attach-into-signal.exp b/gdb/testsuite/gdb.threads/attach-into-signal.exp index 446f00c..4a0a670 100644 --- a/gdb/testsuite/gdb.threads/attach-into-signal.exp +++ b/gdb/testsuite/gdb.threads/attach-into-signal.exp @@ -17,7 +17,7 @@ # This file was created by Jan Kratochvil <jan.kratochvil@redhat.com>. # This test only works on Linux -if { ![isnative] || [is_remote host] || [target_info exists use_gdb_stub] +if { ![isnative] || [is_remote host] || [use_gdb_stub] || ![istarget *-linux*] } { continue } diff --git a/gdb/testsuite/gdb.threads/attach-stopped.exp b/gdb/testsuite/gdb.threads/attach-stopped.exp index 6c8c8bf..a3916c6 100644 --- a/gdb/testsuite/gdb.threads/attach-stopped.exp +++ b/gdb/testsuite/gdb.threads/attach-stopped.exp @@ -18,7 +18,7 @@ # This file was updated by Jan Kratochvil <jan.kratochvil@redhat.com>. # This test only works on Linux -if { ![isnative] || [is_remote host] || [target_info exists use_gdb_stub] +if { ![isnative] || [is_remote host] || [use_gdb_stub] || ![istarget *-linux*] } { continue } diff --git a/gdb/testsuite/gdb.threads/threadapply.exp b/gdb/testsuite/gdb.threads/threadapply.exp index fc8aac6..8979ee3 100644 --- a/gdb/testsuite/gdb.threads/threadapply.exp +++ b/gdb/testsuite/gdb.threads/threadapply.exp @@ -105,7 +105,7 @@ proc kill_and_remove_inferior {thread_set} { # The test starts multiple inferiors, therefore non-extended # remote is not supported. - if [target_info exists use_gdb_stub] { + if [use_gdb_stub] { unsupported "using gdb stub" return } |