From owner-svn-src-head@freebsd.org Mon Mar 20 03:52:08 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27349D0C3FE; Mon, 20 Mar 2017 03:52:08 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E87E0A52; Mon, 20 Mar 2017 03:52:07 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2K3q6GA096866; Mon, 20 Mar 2017 03:52:06 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2K3q6eX096865; Mon, 20 Mar 2017 03:52:06 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201703200352.v2K3q6eX096865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Mon, 20 Mar 2017 03:52:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r315617 - head/contrib/netbsd-tests/lib/libc/locale X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Mar 2017 03:52:08 -0000 Author: ngie Date: Mon Mar 20 03:52:06 2017 New Revision: 315617 URL: https://svnweb.freebsd.org/changeset/base/315617 Log: 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 Modified: head/contrib/netbsd-tests/lib/libc/locale/t_io.c Modified: head/contrib/netbsd-tests/lib/libc/locale/t_io.c ============================================================================== --- head/contrib/netbsd-tests/lib/libc/locale/t_io.c Mon Mar 20 03:50:22 2017 (r315616) +++ head/contrib/netbsd-tests/lib/libc/locale/t_io.c Mon Mar 20 03:52:06 2017 (r315617) @@ -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); }