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]

Re: [testsuite] gdb.c++/templates.exp


Hi Michal,

This part is not quite correct:

  \\(unsigned ?(long|)\\);

It would accept 'unsignedlong' which would be wrong.

Can you try:

  \\(unsigned( long|)\\);

Or:

  \\((unsigned|unsigned long)\\);

Also, I need to know how you tested it.  It doesn't need to be an
extensive test, just say whether you've run it at least once,
and on which platform.

Michael C

===

2003-07-09  Michal Ludvig  <mludvig@suse.cz>

	* testsuite/gdb.c++/templates.exp (test_ptype_of_templates):
	Recognize expansion of size_t to 'unsigned long', not only 
	to 'unsigned'.


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