Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Mar 2017 03:52:06 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
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
Message-ID:  <201703200352.v2K3q6eX096865@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703200352.v2K3q6eX096865>