Module Name: src
Committed By: christos
Date: Sun Mar 25 16:31:51 UTC 2012
Modified Files:
src/tests/lib/libc/gen: t_fnmatch.c
Log Message:
PR/41558 has been fixed.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/gen/t_fnmatch.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/gen/t_fnmatch.c
diff -u src/tests/lib/libc/gen/t_fnmatch.c:1.1 src/tests/lib/libc/gen/t_fnmatch.c:1.2
--- src/tests/lib/libc/gen/t_fnmatch.c:1.1 Sun Mar 18 04:52:07 2012
+++ src/tests/lib/libc/gen/t_fnmatch.c Sun Mar 25 12:31:51 2012
@@ -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 '\\'");
}