]> xenbits.xensource.com Git - people/liuw/freebsd.git/commitdiff
Delete leftover printfs from when these were TAP tests
authorngie <ngie@FreeBSD.org>
Sun, 8 Nov 2015 21:57:35 +0000 (21:57 +0000)
committerngie <ngie@FreeBSD.org>
Sun, 8 Nov 2015 21:57:35 +0000 (21:57 +0000)
MFC after: 1 week
X-MFC with: r290532
Sponsored by: EMC / Isilon Storage Division

lib/libc/tests/locale/mblen_test.c
lib/libc/tests/locale/mbrtoc16_test.c
lib/libc/tests/locale/mbrtowc_test.c
lib/libc/tests/locale/mbsrtowcs_test.c

index 1e8affa939098a4e99af688b575c2493e7b4da43..50ec4ac1b683b5903e7257719fd8755c8405c816 100644 (file)
@@ -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. */
index a60563536d7664b23862388f4a1bbcfa62431b8c..1f9085fff01c79aa809df55391b32f04dcfaf0ba 100644 (file)
@@ -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);
index 802c7d1015d79bd607a6b109a5120cf0aa9377a8..27403925daa9904e82b6e35d24c45426951ccf35 100644 (file)
@@ -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. */
index 3f39fc76cdd43e24dfe25a9f1b7895e9c15cd7bb..1b9d5c933af1cab32fdf3a0da5a20bcf2338801c 100644 (file)
@@ -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");