diff options
author | ngie <ngie@FreeBSD.org> | 2014-11-01 21:23:27 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2014-11-01 21:23:27 +0000 |
commit | 4a047d777b484e5c71fd9ce006792a2fd0e4a81a (patch) | |
tree | 364a752c28e4a30d8d0227416a965c41f627d443 /contrib/netbsd-tests | |
parent | 4625d6d956d9dd8bbf4886a5292062445b821a75 (diff) | |
download | FreeBSD-src-4a047d777b484e5c71fd9ce006792a2fd0e4a81a.zip FreeBSD-src-4a047d777b484e5c71fd9ce006792a2fd0e4a81a.tar.gz |
Add new atf_tc_expect_fail to fflush_err; this is a new (within the past couple months) bug
Diffstat (limited to 'contrib/netbsd-tests')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/stdio/t_fflush.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c b/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c index 766070c..70498c3 100644 --- a/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c +++ b/contrib/netbsd-tests/lib/libc/stdio/t_fflush.c @@ -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); |