diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-01-22 23:11:39 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-01-22 23:11:39 (GMT) |
commit | f3113c02d5df98d554aee9fa23beba9f39ae9e2a (patch) | |
tree | 3c6abc56c09fc4d3e750c1d8ce34c77b57679359 /testpar/testphdf5.c | |
parent | cc171677031c2bff1ae60a45f510492733fe76d7 (diff) | |
download | hdf5-f3113c02d5df98d554aee9fa23beba9f39ae9e2a.zip hdf5-f3113c02d5df98d554aee9fa23beba9f39ae9e2a.tar.gz hdf5-f3113c02d5df98d554aee9fa23beba9f39ae9e2a.tar.bz2 |
[svn-r8096] Purpose:
Improvement.
Description:
Complete change of the verbose control to use the routines provided by
the test/libh5test.a.
Also put in a temporary fix for the H5Eset_auto() and H5Eget_auto()
so that the Compat code are isolated in one place rather than all over
the source file.
Platforms tested:
Tested in Eirene (parallel).
Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 4229876..5c99f66 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -30,7 +30,6 @@ int dim1 = DIM1; int chunkdim0; int chunkdim1; int nerrors = 0; /* errors count */ -int verbose = 0; /* verbose, default as no. */ int ndatasets = 300; /* number of datasets to create*/ int ngroups = 512; /* number of groups to create in root * group. */ @@ -183,7 +182,7 @@ parse_options(int argc, char **argv) break; case 'b': dobig = 1; break; - case 'v': verbose = 1; + case 'v': SetTestVerbosity(VERBO_MED); break; case 'f': if (--argc < 1) { nerrors++; |