diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2003-02-24 20:15:47 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2003-02-24 20:15:47 +0000 |
commit | 9b1c792ed3efa16f763f40763c5b5be3242f6171 (patch) | |
tree | afff9d14f0cc39fa6a60915d6ce9380af1b2496c /gdb/testsuite/gdb.mi | |
parent | 2610b0bff45198901e9816974317481c62d68e1e (diff) | |
download | gdb-9b1c792ed3efa16f763f40763c5b5be3242f6171.zip gdb-9b1c792ed3efa16f763f40763c5b5be3242f6171.tar.gz gdb-9b1c792ed3efa16f763f40763c5b5be3242f6171.tar.bz2 |
* mi-syn-frame.exp: Don't run this test when gdb,nosignals is set.
Diffstat (limited to 'gdb/testsuite/gdb.mi')
-rw-r--r-- | gdb/testsuite/gdb.mi/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.mi/mi-syn-frame.exp | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.mi/ChangeLog b/gdb/testsuite/gdb.mi/ChangeLog index 2e2a82e..d089462 100644 --- a/gdb/testsuite/gdb.mi/ChangeLog +++ b/gdb/testsuite/gdb.mi/ChangeLog @@ -1,3 +1,7 @@ +2003-02-23 Stephane Carrez <stcarrez@nerim.fr> + + * mi-syn-frame.exp: Don't run this test when gdb,nosignals is set. + 2002-12-13 Jeff Johnston <jjohnstn@redhat.com> * mi-basics.exp: Change tests for -environment-directory. Also add diff --git a/gdb/testsuite/gdb.mi/mi-syn-frame.exp b/gdb/testsuite/gdb.mi/mi-syn-frame.exp index 49f9772..44ce845 100644 --- a/gdb/testsuite/gdb.mi/mi-syn-frame.exp +++ b/gdb/testsuite/gdb.mi/mi-syn-frame.exp @@ -1,4 +1,4 @@ -# Copyright 2002 Free Software Foundation, Inc. +# Copyright 2002, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -20,6 +20,11 @@ # Test MI output with synthetic frames on the stack (call dummies, # signal handlers). +if [target_info exists gdb,nosignals] { + verbose "Skipping mi-syn-frame.exp because of nosignals." + continue +} + load_lib mi-support.exp set MIFLAGS "-i=mi" |