From 8d6ef72b0470dfb1133525c8c4556d3578744ac4 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Fri, 13 Oct 2017 12:27:49 +0100 Subject: [PATCH] kfail gdb.python/py-evsignal.exp on RSP targets properly Fixes, with --target_board=native-extended-gdbserver: Running ..../src/gdb/testsuite/gdb.python/py-evsignal.exp ... FAIL: gdb.python/py-evsignal.exp: signal Thread 3 gdb/testsuite/ChangeLog: 2017-10-13 Pedro Alves * gdb.python/py-evsignal.exp: Check gdb_protocol instead of is_remote. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.python/py-evsignal.exp | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 6296e10cfd4..4c011024757 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2017-10-13 Pedro Alves + + * gdb.python/py-evsignal.exp: Check gdb_protocol instead of + is_remote. + 2017-10-13 Pedro Alves * gdb.threads/thread_events.exp: Check gdb_protocol instead of diff --git a/gdb/testsuite/gdb.python/py-evsignal.exp b/gdb/testsuite/gdb.python/py-evsignal.exp index 8a39f4eacb7..4138b9c0314 100644 --- a/gdb/testsuite/gdb.python/py-evsignal.exp +++ b/gdb/testsuite/gdb.python/py-evsignal.exp @@ -13,7 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -if {[is_remote target]} { +if {[target_info gdb_protocol] == "remote" + || [target_info gdb_protocol] == "extended-remote"} { # RuntimeError: Could not find event thread kfail "python/12966" "Signal Thread 3" return -1 -- 2.30.2