* gdb.c++/classes.exp (ptype class A): Tolerate whitespace
authorJim Blandy <jimb@codesourcery.com>
Tue, 24 Apr 2001 17:39:14 +0000 (17:39 +0000)
committerJim Blandy <jimb@codesourcery.com>
Tue, 24 Apr 2001 17:39:14 +0000 (17:39 +0000)
variations.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.c++/classes.exp

index d8afbe58afc6b06dc1b2e47e240b0d9591ab3e5c..69b29c3aaed401a9d9cf732d4c691e0906cf8bc5 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-24  Jim Blandy  <jimb@redhat.com>
+
+       * gdb.c++/classes.exp (ptype class A): Tolerate whitespace
+       variations.
+
 2001-04-22  Michael Chastain  <chastain@redhat.com>
 
        * gdb.c++/local.exp: Use the 'runto' library function.
index 39bc275ba3d6391090112f1e78f0d24dbb3a52db..2e2e89cf8f5d9ab29861322a900fd9abd0e1f62b 100644 (file)
@@ -224,7 +224,7 @@ proc test_ptype_class_objects {} {
     # it to print as "struct".
     send_gdb "ptype class A\n"
     gdb_expect {
-       -re "type = (class|struct) A \{(${ws}public:|)${ws}int a;${ws}int x;((${ws}A & operator=\\(A const &\\);)|(${ws}A\\(A const &\\);)|(${ws}A\\(void\\);))*${ws}\}$nl$gdb_prompt $" {
+       -re "type = (class|struct) A \{(${ws}public:|)${ws}int a;${ws}int x;((${ws}A & operator=\\(A const ?&\\);)|(${ws}A\\(A const ?&\\);)|(${ws}A\\(void\\);))*${ws}\}$nl$gdb_prompt $" {
            pass "ptype class A"
        }
        -re ".*$gdb_prompt $" {