Module Name: src
Committed By: justin
Date: Sun Oct 12 19:08:08 UTC 2014
Modified Files:
src/tests/lib/libc/gen: t_fnmatch.c
Log Message:
Add expect fail for PR lib/49278
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 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.4 src/tests/lib/libc/gen/t_fnmatch.c:1.5
--- src/tests/lib/libc/gen/t_fnmatch.c:1.4 Sun Oct 12 18:59:35 2014
+++ src/tests/lib/libc/gen/t_fnmatch.c Sun Oct 12 19:08:08 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: t_fnmatch.c,v 1.4 2014/10/12 18:59:35 justin Exp $ */
+/* $NetBSD: t_fnmatch.c,v 1.5 2014/10/12 19:08:08 justin 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.4 2014/10/12 18:59:35 justin Exp $");
+__RCSID("$NetBSD: t_fnmatch.c,v 1.5 2014/10/12 19:08:08 justin Exp $");
#include <atf-c.h>
#include <fnmatch.h>
@@ -175,6 +175,8 @@ ATF_TC_BODY(fnmatch_initialbracket, tc)
ATF_CHECK(fnmatch("[*]/b", "a/b", 0) != 0);
ATF_CHECK(fnmatch("[?]/b", "a/b", 0) != 0);
+
+ atf_tc_expect_fail("PR lib/49278");
}
ATF_TP_ADD_TCS(tp)