Delete leftover printfs from when these were TAP tests

MFC after: 1 week
X-MFC with: r290532
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2015-11-08 21:57:35 +00:00
parent 4c05e4ea85
commit 659f1d64bd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=290561
4 changed files with 0 additions and 8 deletions

View 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. */

View 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);

View 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. */

View 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");