summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-19 13:30:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-19 13:30:24 (GMT)
commitedd0e4a18ea752d6e10b3a4167627cfbe027aee7 (patch)
tree744eaf912b5826fe64f29da9c6be5744e2755d94
parent6d7cbd13dce1ae24446ed84a88c64c68598dc6bf (diff)
downloadhdf5-edd0e4a18ea752d6e10b3a4167627cfbe027aee7.zip
hdf5-edd0e4a18ea752d6e10b3a4167627cfbe027aee7.tar.gz
hdf5-edd0e4a18ea752d6e10b3a4167627cfbe027aee7.tar.bz2
[svn-r5669] Purpose:
Code cleanup Description: Remove debugging printf Platforms tested: IRIX64 6.5 (modi4) w/parallel
-rw-r--r--testpar/t_mdset.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c
index 46e2117..a29b8ae 100644
--- a/testpar/t_mdset.c
+++ b/testpar/t_mdset.c
@@ -76,7 +76,9 @@ void multiple_dset_write(char *filename, int ndatasets)
H5Dclose (dataset);
if (! ((n+1) % 10)) {
+#ifdef VERBOSE
printf("created %d datasets\n", n+1);
+#endif /* VERBOSE */
MPI_Barrier(MPI_COMM_WORLD);
}
}
@@ -136,7 +138,9 @@ void multiple_group_write(char *filename, int ngroups)
H5Gclose(gid);
if(! ((m+1) % 10)) {
+#ifdef VERBOSE
printf("created %d groups\n", m+1);
+#endif /* VERBOSE */
MPI_Barrier(MPI_COMM_WORLD);
}
}