This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch/testsuite/cp] templates.exp: fix typo, <volatile char*>


This patch fixes a typo in a recent change in templates.exp.
There are two tests:

  print Foo<volatile char *>::foo
  print Foo<volatile char*>::foo

A KFAIL in the second test needs to have its name spaced properly.
No big deal.
 
Tested on native i686-pc-linux-gnu, gcc 2.95.3 3.3.2 HEAD, dwarf-2 stabs+.

IACTN,

Michael C

2004-01-17  Michael Chastain  <mec.gnu@mindspring.com>

	* gdb.cp/templates.exp: Fix typo in test name of
	"print Foo<volatile char*>::foo".

Index: templates.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.cp/templates.exp,v
retrieving revision 1.6
diff -c -3 -p -r1.6 templates.exp
*** templates.exp	14 Jan 2004 19:03:32 -0000	1.6
--- templates.exp	18 Jan 2004 02:59:20 -0000
*************** gdb_expect {   
*** 348,354 ****
  	# This used to be a kfail gdb/33.  That problem has been
  	# fixed, but now gdb/931 and gdb/1512 are rearing their ugly
  	# heads.
! 	kfail "gdb/931" "print Foo<volatile char *>::foo"
      }
      -re "$gdb_prompt $"                     { fail "print Foo<volatile char*>::foo" }
      timeout                             { fail "(timeout) print Foo<volatile char*>::foo" }
--- 348,354 ----
  	# This used to be a kfail gdb/33.  That problem has been
  	# fixed, but now gdb/931 and gdb/1512 are rearing their ugly
  	# heads.
! 	kfail "gdb/931" "print Foo<volatile char*>::foo"
      }
      -re "$gdb_prompt $"                     { fail "print Foo<volatile char*>::foo" }
      timeout                             { fail "(timeout) print Foo<volatile char*>::foo" }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]