diff options
Diffstat (limited to 'lib/libc/tests')
-rw-r--r-- | lib/libc/tests/locale/mblen_test.c | 2 | ||||
-rw-r--r-- | lib/libc/tests/locale/mbrtoc16_test.c | 2 | ||||
-rw-r--r-- | lib/libc/tests/locale/mbrtowc_test.c | 2 | ||||
-rw-r--r-- | lib/libc/tests/locale/mbsrtowcs_test.c | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/lib/libc/tests/locale/mblen_test.c b/lib/libc/tests/locale/mblen_test.c index 1e8affa..50ec4ac 100644 --- a/lib/libc/tests/locale/mblen_test.c +++ b/lib/libc/tests/locale/mblen_test.c @@ -53,8 +53,6 @@ ATF_TC_BODY(mblen_test, tc) * C/POSIX locale. */ - printf("1..1\n"); - ATF_REQUIRE(MB_CUR_MAX == 1); /* No shift states in C locale. */ diff --git a/lib/libc/tests/locale/mbrtoc16_test.c b/lib/libc/tests/locale/mbrtoc16_test.c index a605635..1f9085f 100644 --- a/lib/libc/tests/locale/mbrtoc16_test.c +++ b/lib/libc/tests/locale/mbrtoc16_test.c @@ -53,8 +53,6 @@ ATF_TC_BODY(mbrtoc16_test, tc) * C/POSIX locale. */ - printf("1..1\n"); - /* Null wide character, internal state. */ ATF_REQUIRE(mbrtoc16(&c16, "", 1, NULL) == 0); ATF_REQUIRE(c16 == 0); diff --git a/lib/libc/tests/locale/mbrtowc_test.c b/lib/libc/tests/locale/mbrtowc_test.c index 802c7d1..2740392 100644 --- a/lib/libc/tests/locale/mbrtowc_test.c +++ b/lib/libc/tests/locale/mbrtowc_test.c @@ -57,8 +57,6 @@ ATF_TC_BODY(mbrtowc_test, tc) * C/POSIX locale. */ - printf("1..1\n"); - ATF_REQUIRE(MB_CUR_MAX == 1); /* Null wide character, internal state. */ diff --git a/lib/libc/tests/locale/mbsrtowcs_test.c b/lib/libc/tests/locale/mbsrtowcs_test.c index 3f39fc7..1b9d5c9 100644 --- a/lib/libc/tests/locale/mbsrtowcs_test.c +++ b/lib/libc/tests/locale/mbsrtowcs_test.c @@ -57,8 +57,6 @@ ATF_TC_BODY(mbsrtowcs_test, tc) * C/POSIX locale. */ - printf("1..1\n"); - /* Simple null terminated string. */ memset(srcbuf, 0xcc, sizeof(srcbuf)); strcpy(srcbuf, "hello"); |