From eecf4bedc4056f0ecb66b870100a2948bdeed0c5 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 18 Jul 2002 23:52:49 +0000 Subject: [PATCH] * gdb.base/interrupt.exp: Correct logic for skipping tests on targets that don't support interrupts. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.base/interrupt.exp | 8 +++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bdc0926..e671898 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2002-07-18 Jim Blandy + + * gdb.base/interrupt.exp: Correct logic for skipping tests on + targets that don't support interrupts. + 2002-07-10 Paul N. Hilfinger * gdb.base/attach.exp: Add patterns to match output from /proc-based diff --git a/gdb/testsuite/gdb.base/interrupt.exp b/gdb/testsuite/gdb.base/interrupt.exp index fc3a30c..6d5401d 100644 --- a/gdb/testsuite/gdb.base/interrupt.exp +++ b/gdb/testsuite/gdb.base/interrupt.exp @@ -18,11 +18,9 @@ # Please email any bugs, comments, and/or additions to this file to: # bug-gdb@prep.ai.mit.edu -if [host_info exists name] { - if [board_info host exists gdb,nointerrupts] { - verbose "Skipping interrupt.exp because of nointerrupts." - continue - } +if [target_info exists gdb,nointerrupts] { + verbose "Skipping interrupt.exp because of nointerrupts." + continue } if [target_info exists gdb,noinferiorio] { -- 2.7.4