Home | History | Annotate | Download | only in iotest

Lines Matching refs:TestLineCount

731 static void TestLineCount(const char *prefixLine, const char *line, int32_t numRepititions) {
789 TestLineCount("\n", "\n", 1024); /* Unix newlines */
790 TestLineCount("\r\n", "\r\n", 1024);/* Windows newlines */
791 TestLineCount("a\r\n", "\r\n", 1024);/* Windows newlines offset by 1 byte */
792 TestLineCount("\r\n", "a\r\n", 1024);/* Windows newlines offset with data */
793 TestLineCount("\n", "a\n", 1024); /* Unix newlines offset with data */
794 TestLineCount("\n", "\r\n", 1024); /* a mixed number of lines. */