diff options
author | Fred Fish <fnf@specifix.com> | 2002-03-26 00:36:07 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2002-03-26 00:36:07 +0000 |
commit | 754b2b8dc7012e8edafd93633b421dd718eac8e5 (patch) | |
tree | 891e27e89140970a7b057e9e0522c743f62c083d /gdb | |
parent | 629b007a94e3e48d56f0cad549c1215919fda61b (diff) | |
download | gdb-754b2b8dc7012e8edafd93633b421dd718eac8e5.zip gdb-754b2b8dc7012e8edafd93633b421dd718eac8e5.tar.gz gdb-754b2b8dc7012e8edafd93633b421dd718eac8e5.tar.bz2 |
2002-03-25 Fred Fish <fnf@redhat.com>
* gdb.base/list.exp: This test works on remote targets so remove
the short circuit for remote targets. Update copyright.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/list.exp | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 67cc323..08956e3 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2002-03-25 Fred Fish <fnf@redhat.com> + * gdb.base/list.exp: This test works on remote targets so remove + the short circuit for remote targets. Update copyright. + +2002-03-25 Fred Fish <fnf@redhat.com> + * gdb.base/attach.exp: Fix logic error that was suppressing this test for all non hppa*-*-hpux* targets, instead of the hp target. Move comments closer to the suppression point. Also now need to diff --git a/gdb/testsuite/gdb.base/list.exp b/gdb/testsuite/gdb.base/list.exp index ddd1e36..315bf0a 100644 --- a/gdb/testsuite/gdb.base/list.exp +++ b/gdb/testsuite/gdb.base/list.exp @@ -1,4 +1,4 @@ -# Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999 +# Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2002 # Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify @@ -95,12 +95,7 @@ proc test_listsize {} { # Show the default lines # The second case is for optimized code, it is still correct. - if [is_remote target] { - runto_main; - unsupported "list default lines around main"; - } else { - gdb_test "list" "(1\[ \t\]+#include \"list0.h\".*10\[ \t\]+x = 0;|2.*11\[ \t\]+foo .x\[+)\]+;)" "list default lines around main" - } + gdb_test "list" "(1\[ \t\]+#include \"list0.h\".*10\[ \t\]+x = 0;|2.*11\[ \t\]+foo .x\[+)\]+;)" "list default lines around main" # Ensure we can limit printouts to one line |