From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16699 invoked by alias); 9 Jul 2003 15:05:34 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 16692 invoked from network); 9 Jul 2003 15:05:33 -0000 Received: from unknown (HELO concert.shout.net) (204.253.184.25) by sources.redhat.com with SMTP; 9 Jul 2003 15:05:33 -0000 Received: from duracef.shout.net (duracef.shout.net [204.253.184.12]) by concert.shout.net (8.12.9/8.12.9) with ESMTP id h69F5Xop006704; Wed, 9 Jul 2003 10:05:33 -0500 Received: from duracef.shout.net (localhost [127.0.0.1]) by duracef.shout.net (8.12.9/8.12.9) with ESMTP id h69F5XHK023635; Wed, 9 Jul 2003 10:05:33 -0500 Received: (from mec@localhost) by duracef.shout.net (8.12.9/8.12.9/Submit) id h69F5WkH023634; Wed, 9 Jul 2003 11:05:32 -0400 Date: Wed, 09 Jul 2003 15:05:00 -0000 From: Michael Elizabeth Chastain Message-Id: <200307091505.h69F5WkH023634@duracef.shout.net> To: gdb-patches@sources.redhat.com, mludvig@suse.cz Subject: Re: [testsuite] gdb.c++/templates.exp X-SW-Source: 2003-07/txt/msg00174.txt.bz2 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 * testsuite/gdb.c++/templates.exp (test_ptype_of_templates): Recognize expansion of size_t to 'unsigned long', not only to 'unsigned'.