diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2006-04-11 20:01:58 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2006-04-11 20:01:58 (GMT) |
commit | 6952f4809666f9db5629183be2a7c678e7c0eb89 (patch) | |
tree | c19b87a7830b4d06b6b4c6497737ac2eb14cf519 | |
parent | b18e0d8497ff7dcabc8265e9bef12f09be930d09 (diff) | |
download | hdf5-6952f4809666f9db5629183be2a7c678e7c0eb89.zip hdf5-6952f4809666f9db5629183be2a7c678e7c0eb89.tar.gz hdf5-6952f4809666f9db5629183be2a7c678e7c0eb89.tar.bz2 |
[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:
-rw-r--r-- | testpar/t_cache.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testpar/t_cache.c b/testpar/t_cache.c index 5e969a8..b30236c 100644 --- a/testpar/t_cache.c +++ b/testpar/t_cache.c @@ -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); |