1
1
openmpi/orte/test/mpi/sio.c
Ralph Castain ef20e778b3 Ensure that output ends on an appropriate suffix tag when --tag-output or --xml are selected.
When we read the input buffer, we don't always get a complete printf output - we sometimes end mid stream. We still need to add the suffix and a <CR> to keep the output working right.

This commit was SVN r21706.
2009-07-17 05:02:53 +00:00

24 строки
337 B
C

/* -*- C -*-
*
* $HEADER$
*
* The most basic of MPI applications
*/
#include <stdio.h>
#include "mpi.h"
int main(int argc, char* argv[])
{
int i;
MPI_Init(&argc, &argv);
for (i=0; i < 100; i++) {
printf("some output from mpitest to test the xml problem: %d\n", i);
}
MPI_Finalize();
return 0;
}