PR/41558 has been fixed.

This commit is contained in:
christos 2012-03-25 16:31:51 +00:00
parent a105f91c05
commit ea65e6a5bc
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_fnmatch.c,v 1.1 2012/03/18 08:52:07 jruoho Exp $ */
/* $NetBSD: t_fnmatch.c,v 1.2 2012/03/25 16:31:51 christos Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: t_fnmatch.c,v 1.1 2012/03/18 08:52:07 jruoho Exp $");
__RCSID("$NetBSD: t_fnmatch.c,v 1.2 2012/03/25 16:31:51 christos Exp $");
#include <atf-c.h>
#include <fnmatch.h>
@ -50,8 +50,6 @@ ATF_TC_BODY(fnmatch_backslashes, tc)
{
const int rv = fnmatch(/* pattern */ "\\", "\\", 0);
atf_tc_expect_fail("PR lib/41558");
if (rv != FNM_NOMATCH)
atf_tc_fail("fnmatch(3) did not translate '\\'");
}