From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20632 invoked by alias); 8 Nov 2002 22:24:20 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 20614 invoked from network); 8 Nov 2002 22:24:19 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 8 Nov 2002 22:24:19 -0000 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.11.6/8.11.6) id gA8MNiP17285; Fri, 8 Nov 2002 23:23:44 +0100 Date: Fri, 08 Nov 2002 14:24:00 -0000 From: Jakub Jelinek To: Roland McGrath Cc: Glibc hackers Subject: [PATCH] Add one regex testcase Message-ID: <20021108232344.W3451@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-SW-Source: 2002-11/txt/msg00043.txt.bz2 Hi! This test was failing in CVS checkout from September, 3rd, seems to be fixed now. It certainly doesn't hurt to make sure the bug won't come up again... 2002-11-08 Jakub Jelinek * posix/bug-regex13.c (tests): Add new test. --- libc/posix/bug-regex13.c.jj 2002-10-21 20:16:31.000000000 +0200 +++ libc/posix/bug-regex13.c 2002-11-08 23:34:08.000000000 +0100 @@ -33,6 +33,7 @@ static struct } tests[] = { {RE_BACKSLASH_ESCAPE_IN_LISTS, "[0\\-9]", "1", -1}, /* It should not match. */ {RE_BACKSLASH_ESCAPE_IN_LISTS, "[0\\-9]", "-", 0}, /* It should match. */ + {RE_SYNTAX_POSIX_BASIC, "s1\n.*\ns3", "s1\ns2\ns3", 0} }; int Jakub