diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2017-03-03 21:43:03 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2017-03-03 21:43:03 +0000 |
commit | 5c80c37a349e934e6330fe421920680822ccc17b (patch) | |
tree | d3a5240e109b4eec94a7854d456797627b38b8c8 /contrib/netbsd-tests/lib | |
parent | 8e06c99159d72efad4c4c5afe93392c9b80722d1 (diff) | |
download | FreeBSD-src-5c80c37a349e934e6330fe421920680822ccc17b.zip FreeBSD-src-5c80c37a349e934e6330fe421920680822ccc17b.tar.gz |
MFC r309626,r309627,r309659:
r309626:
strvis(3): Avoid internal state of multibyte functions being tainted.
r309627:
Remove unneeded hack fixed by r309626.
r309659:
Support spaces in group names.
Diffstat (limited to 'contrib/netbsd-tests/lib')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/locale/t_mbtowc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/netbsd-tests/lib/libc/locale/t_mbtowc.c b/contrib/netbsd-tests/lib/libc/locale/t_mbtowc.c index 7816260..2e57786 100644 --- a/contrib/netbsd-tests/lib/libc/locale/t_mbtowc.c +++ b/contrib/netbsd-tests/lib/libc/locale/t_mbtowc.c @@ -137,16 +137,10 @@ ATF_TC_BODY(mbtowc, tc) h_mbtowc("ja_JP.ISO2022-JP", "\033$B", "\033$B$\"\033(B"); h_mbtowc("ja_JP.SJIS", "\202", "\202\240"); h_mbtowc("ja_JP.eucJP", "\244", "\244\242"); -#ifndef __FreeBSD__ /* Moved last as it fails */ h_mbtowc("zh_CN.GB18030", "\241", "\241\241"); -#endif h_mbtowc("zh_TW.Big5", "\241", "\241@"); h_mbtowc("zh_TW.eucTW", "\241", "\241\241"); -#ifdef __FreeBSD__ - atf_tc_expect_fail("zh_CN.GB18030"); - h_mbtowc("zh_CN.GB18030", "\241", "\241\241"); -#endif } ATF_TP_ADD_TCS(tp) |