Home | History | Annotate | Download | only in iotest

Lines Matching refs:testStr

434     static const char testStr[] = "This is a test string that tests u_fgets. It makes sure that we don't try to read too much!";
436 int32_t expectedSize = (int32_t)strlen(testStr);
455 u_uastrncpy(buffer, testStr, expectedSize+1);
497 u_uastrncpy(buffer, testStr, expectedSize+1);
539 u_uastrncpy(buffer, testStr, expectedSize+1);
591 static const char testStr[] = "This is a test string that tests u_fgets. It makes sure that we don't try to read too much!";
594 int32_t expectedSize = (int32_t)strlen(testStr);
605 fwrite(testStr, sizeof(testStr[0]), expectedSize, stdFile);
607 fwrite("\n", sizeof(testStr[0]), 1, stdFile);