[svn-r12224] Purpose:

Bug fix.

Description:
When MPE is used, the test generates huge Clog files in /tmp that
could fill up the disk (like in Copper.)

Solution:
Turned off MPE logging.

Platforms tested:
heping (pp) and copper(pp)

Misc. update:
This commit is contained in:
Albert Cheng 2006-04-11 15:01:58 -05:00
parent b18e0d8497
commit 6952f48096

View File

@ -3339,6 +3339,11 @@ main(int argc, char **argv)
int max_nerrors;
MPI_Init(&argc, &argv);
#ifdef H5_HAVE_MPE
/* turn off MPE logging since this test generates big cpilog files that */
/* fill up /tmp. */
MPE_Stop_log();
#endif H5_HAVE_MPE
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);