From 11cf4ffb5e256d268a8f4cea0fc88a0a46bf824c Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Wed, 27 Apr 2016 16:11:53 +0100 Subject: [PATCH] Skip gdb.base/branch-to-self.exp if gdb,nosignals exists I get a timeout fail in branch-to-self.exp when it is compiled by a bare-mental target running qemu, which doesn't have signal. The test should be skipped if gdb,nosignals exists, and that is what this patch does. gdb/testsuite: 2016-04-27 Yao Qi * gdb.base/branch-to-self.exp: Skip it if gdb,nosignals exists. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.base/branch-to-self.exp | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 92eb9ff3a59..4d3e6df424d 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-04-27 Yao Qi + + * gdb.base/branch-to-self.exp: Skip it if gdb,nosignals + exists. + 2016-04-26 Bernhard Heckel * vla-type.exp: Print structure from toplevel. diff --git a/gdb/testsuite/gdb.base/branch-to-self.exp b/gdb/testsuite/gdb.base/branch-to-self.exp index 2fd3b386df0..4db502c735c 100644 --- a/gdb/testsuite/gdb.base/branch-to-self.exp +++ b/gdb/testsuite/gdb.base/branch-to-self.exp @@ -15,6 +15,11 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +if [target_info exists gdb,nosignals] { + verbose "Skipping branch-to-self.exp because of nosignals." + continue +} + standard_testfile if { [build_executable ${testfile}.exp ${testfile} $srcfile {debug}] == -1 } { -- 2.30.2