svn commit: r273949 - head/contrib/netbsd-tests/lib/libc/stdio

Garrett Cooper ngie at FreeBSD.org
Sat Nov 1 21:23:28 UTC 2014


Author: ngie
Date: Sat Nov  1 21:23:27 2014
New Revision: 273949
URL: https://svnweb.freebsd.org/changeset/base/273949

Log:
  Add new atf_tc_expect_fail to fflush_err; this is a new (within the past couple months) bug

Modified:
  head/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c

Modified: head/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c	Sat Nov  1 21:21:06 2014	(r273948)
+++ head/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c	Sat Nov  1 21:23:27 2014	(r273949)
@@ -48,6 +48,10 @@ ATF_TC_BODY(fflush_err, tc)
 {
 	FILE *f;
 
+#ifdef __FreeBSD__
+	atf_tc_expect_fail("the EOF invariant fails on FreeBSD; this is new");
+#endif
+
 	f = fopen(path, "w");
 
 	ATF_REQUIRE(f != NULL);


More information about the svn-src-all mailing list