Drop "XXCEL" strings from print statements

master
Christopher J. Morrone 2011-11-29 13:14:14 -08:00
parent edd3d1a038
commit 37e3ba1766
1 changed files with 4 additions and 4 deletions

View File

@ -1253,7 +1253,7 @@ static void ReduceIterResults(IOR_param_t * test, double **timer, int rep,
PPDouble(LEFT, diff[2], " \0"); PPDouble(LEFT, diff[2], " \0");
PPDouble(LEFT, totalWriteTime, " \0"); PPDouble(LEFT, totalWriteTime, " \0");
} }
fprintf(stdout, "%-4d XXCEL\n", rep); fprintf(stdout, "%-4d\n", rep);
} }
if (access == READ) { if (access == READ) {
fprintf(stdout, "read "); fprintf(stdout, "read ");
@ -1268,7 +1268,7 @@ static void ReduceIterResults(IOR_param_t * test, double **timer, int rep,
PPDouble(LEFT, diff[5], " \0"); PPDouble(LEFT, diff[5], " \0");
PPDouble(LEFT, totalReadTime, " \0"); PPDouble(LEFT, totalReadTime, " \0");
} }
fprintf(stdout, "%-4d XXCEL\n", rep); fprintf(stdout, "%-4d\n", rep);
} }
fflush(stdout); fflush(stdout);
} }
@ -2135,7 +2135,7 @@ static void TestIoSys(IOR_param_t * test)
filehits[ifile], filehits[ifile],
ifile++; ifile++;
} }
fprintf(stdout, " XXCEL\n"); fprintf(stdout, "\n");
free(rankoffs); free(rankoffs);
free(filecont); free(filecont);
free(filehits); free(filehits);
@ -2156,7 +2156,7 @@ static void TestIoSys(IOR_param_t * test)
fd = backend->open(testFileName, test); fd = backend->open(testFileName, test);
if (rank == 0 && verbose >= VERBOSE_2) { if (rank == 0 && verbose >= VERBOSE_2) {
fprintf(stdout, fprintf(stdout,
"[RANK %03d] open for reading file %s XXCEL\n", "[RANK %03d] open for reading file %s\n",
rank, testFileName); rank, testFileName);
} }
timer[7][rep] = GetTimeStamp(); timer[7][rep] = GetTimeStamp();