From b49d92c2aa9d52d705e339012d736c90cb52dda6 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Mon, 20 Mar 2017 03:52:06 +0000 Subject: [PATCH] Remove all expected failures from lib/libc/locale/io_test for FreeBSD This is no longer required as of r315616, as the test is no longer built/installed. This is being done to diff reduce with NetBSD. Sponsored by: Dell EMC Isilon --- contrib/netbsd-tests/lib/libc/locale/t_io.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/contrib/netbsd-tests/lib/libc/locale/t_io.c b/contrib/netbsd-tests/lib/libc/locale/t_io.c index 8c7f371f209..782bed8f9e8 100644 --- a/contrib/netbsd-tests/lib/libc/locale/t_io.c +++ b/contrib/netbsd-tests/lib/libc/locale/t_io.c @@ -53,10 +53,6 @@ ATF_TC_HEAD(bad_big5_wprintf, tc) ATF_TC_BODY(bad_big5_wprintf, tc) { -#ifdef __FreeBSD__ - atf_tc_skip("does not fail as expected (may be implementation " - "specific issue with the test)"); -#endif /* XXX implementation detail knowledge (wchar_t encoding) */ wchar_t ibuf[] = { 0xcf10, 0 }; setlocale(LC_CTYPE, "zh_TW.Big5"); @@ -72,10 +68,6 @@ ATF_TC_HEAD(bad_big5_swprintf, tc) ATF_TC_BODY(bad_big5_swprintf, tc) { -#ifdef __FreeBSD__ - atf_tc_skip("does not fail as expected (may be implementation " - "specific issue with the test)"); -#endif /* XXX implementation detail knowledge (wchar_t encoding) */ wchar_t ibuf[] = { 0xcf10, 0 }; wchar_t obuf[20]; @@ -169,9 +161,6 @@ ATF_TC_BODY(bad_big5_getwc, tc) ATF_REQUIRE(fp != NULL); setlocale(LC_CTYPE, "zh_TW.Big5"); -#ifdef __FreeBSD__ - atf_tc_expect_fail("does not return WEOF as expected"); -#endif ATF_REQUIRE_EQ(getwc(fp), WEOF); fclose(fp); }