diff options
author | Michael Chastain <mec@google.com> | 2001-02-18 07:10:32 +0000 |
---|---|---|
committer | Michael Chastain <mec@google.com> | 2001-02-18 07:10:32 +0000 |
commit | b2f9ec70af37917616d03dc3c5f6fa1e2aaa60a2 (patch) | |
tree | 5d6be5c011a7083d879648e7a3b1fbec84c21908 /gdb/testsuite | |
parent | 7830cf6fb9571c3357b1a06e9df5425d5f0ea994 (diff) | |
download | gdb-b2f9ec70af37917616d03dc3c5f6fa1e2aaa60a2.zip gdb-b2f9ec70af37917616d03dc3c5f6fa1e2aaa60a2.tar.gz gdb-b2f9ec70af37917616d03dc3c5f6fa1e2aaa60a2.tar.bz2 |
2001-02-14 Michael Chastain <chastain@redhat.com>
* gdb.c++/inherit.exp (do_tests): Change runto statements
from "runto 'foo(void)'" to "runto 'foo'". This makes the
statements demangler agnostic.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.c++/inherit.exp | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 1ba89d2..989c897 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2001-02-14 Michael Chastain <chastain@redhat.com> + + * gdb.c++/inherit.exp (do_tests): Change runto statements + from "runto 'foo(void)'" to "runto 'foo'". This makes the + statements demangler agnostic. + Sun Feb 4 17:32:21 2001 Andrew Cagney <cagney@redhat.com> * gdb.threads/pthreads.exp: Unify pass/fail messages for diff --git a/gdb/testsuite/gdb.c++/inherit.exp b/gdb/testsuite/gdb.c++/inherit.exp index 8ab9302..2b49692 100644 --- a/gdb/testsuite/gdb.c++/inherit.exp +++ b/gdb/testsuite/gdb.c++/inherit.exp @@ -1,4 +1,4 @@ -# Copyright (C) 1992, 1993, 1994, 1997, 1999 Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1997, 1999, 2001 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 @@ -1012,7 +1012,7 @@ proc do_tests {} { gdb_stop_suppressing_tests; - if { ![ runto 'inheritance2(void)' ] } { + if { ![ runto 'inheritance2' ] } { gdb_suppress_tests; } @@ -1024,7 +1024,7 @@ proc do_tests {} { gdb_stop_suppressing_tests; - if { ![ runto 'inheritance4(void)' ] } { + if { ![ runto 'inheritance4' ] } { gdb_suppress_tests; } |