Date: Sat, 1 Nov 2014 21:23:27 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r273949 - head/contrib/netbsd-tests/lib/libc/stdio Message-ID: <201411012123.sA1LNROd055975@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411012123.sA1LNROd055975>