Home | History | Annotate | Download | only in iotest

Lines Matching refs:readBuf

988     char readBuf[512] = "";
1032 n += fscanf(myCFile, "%s", readBuf);
1034 if (strcmp(readBuf, testBuf) != 0) {
1035 log_err("%%x Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1038 n += fscanf(myCFile, "%s", readBuf);
1040 if (strcmp(readBuf, testBuf) != 0) {
1041 log_err("%%X Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1044 n += fscanf(myCFile, "%s", readBuf);
1046 if (strcmp(readBuf, testBuf) != 0) {
1047 log_err("%%o Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1051 n += fscanf(myCFile, "%s", readBuf);
1053 if (strcmp(readBuf, testBuf) != 0) {
1054 log_err("%%d Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1057 n += fscanf(myCFile, "%s", readBuf);
1059 if (strcmp(readBuf, testBuf) != 0) {
1060 log_err("%%i Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1063 n += fscanf(myCFile, "%s", readBuf);
1065 if (strcmp(readBuf, testBuf) != 0) {
1066 log_err("%%f Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1069 /* fscanf(myCFile, "%s", readBuf);
1071 if (strcmp(readBuf, testBuf) != 0) {
1072 log_err("%%e Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1075 fscanf(myCFile, "%s", readBuf);
1077 if (strcmp(readBuf, testBuf) != 0) {
1078 log_err("%%E Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1081 n += fscanf(myCFile, "%s", readBuf);
1083 if (strcmp(readBuf, testBuf) != 0) {
1084 log_err("%%g Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);
1087 n += fscanf(myCFile, "%s", readBuf);
1089 if (strcmp(readBuf, testBuf) != 0) {
1090 log_err("%%G Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf);