Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tests/lib/libc/locale Mark two routinely-broken tests as exp...
details: https://anonhg.NetBSD.org/src/rev/54f415ed5288
branches: trunk
changeset: 785517:54f415ed5288
user: jmmv <jmmv%NetBSD.org@localhost>
date: Sun Mar 17 05:02:13 2013 +0000
description:
Mark two routinely-broken tests as expected failures referencing PR lib/47660.
diffstat:
tests/lib/libc/locale/t_io.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (34 lines):
diff -r 56d03b13c927 -r 54f415ed5288 tests/lib/libc/locale/t_io.c
--- a/tests/lib/libc/locale/t_io.c Sun Mar 17 04:47:16 2013 +0000
+++ b/tests/lib/libc/locale/t_io.c Sun Mar 17 05:02:13 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_io.c,v 1.1 2013/02/28 21:52:02 christos Exp $ */
+/* $NetBSD: t_io.c,v 1.2 2013/03/17 05:02:13 jmmv Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2011\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_io.c,v 1.1 2013/02/28 21:52:02 christos Exp $");
+__RCSID("$NetBSD: t_io.c,v 1.2 2013/03/17 05:02:13 jmmv Exp $");
#include <sys/param.h>
#include <errno.h>
@@ -55,6 +55,7 @@
{
wchar_t ibuf[] = { 0xcf10, 0 };
setlocale(LC_CTYPE, "zh_TW.Big5");
+ atf_tc_expect_fail("PR lib/47660");
ATF_REQUIRE_EQ(wprintf(L"%ls\n", ibuf), -1);
}
@@ -154,6 +155,7 @@
setlocale(LC_CTYPE, "ja_JP.eucJP");
// WTF? Not even returning what it read?
ATF_CHECK_EQ(getwc(fp), 0xcf20);
+ atf_tc_expect_fail("PR lib/47660");
ATF_REQUIRE_EQ(getwc(fp), WEOF);
fclose(fp);
}
Home |
Main Index |
Thread Index |
Old Index