aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2015-11-08 21:57:35 +0000
committerEnji Cooper <ngie@FreeBSD.org>2015-11-08 21:57:35 +0000
commit659f1d64bd8df5b947a26abb00d676d1948f69a0 (patch)
tree22ca14888e3a54b6e22c46945189ba1eeb7f0c34
parent4c05e4ea855e6c3eb4b19260f39eace0529c877f (diff)
Notes
-rw-r--r--lib/libc/tests/locale/mblen_test.c2
-rw-r--r--lib/libc/tests/locale/mbrtoc16_test.c2
-rw-r--r--lib/libc/tests/locale/mbrtowc_test.c2
-rw-r--r--lib/libc/tests/locale/mbsrtowcs_test.c2
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 1e8affa93909..50ec4ac1b683 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 a60563536d76..1f9085fff01c 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 802c7d1015d7..27403925daa9 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 3f39fc76cdd4..1b9d5c933af1 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");