diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-01-29 15:04:32 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-01-29 15:04:32 (GMT) |
commit | 203799486de690f5ee5911ecdc2b4aaff6681b33 (patch) | |
tree | d13d995d452f898752ada7520e598ae9e8fb0437 /tools/h5repack/h5repack_verify.c | |
parent | 796fe1c4025f83b4060157d04d3873ca9f3fa9e7 (diff) | |
download | hdf5-203799486de690f5ee5911ecdc2b4aaff6681b33.zip hdf5-203799486de690f5ee5911ecdc2b4aaff6681b33.tar.gz hdf5-203799486de690f5ee5911ecdc2b4aaff6681b33.tar.bz2 |
[svn-r8123] Purpose:
added more tests for szip and more verbose output
Description:
Solution:
Platforms tested:
linux
solaris
AIX
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack_verify.c')
-rw-r--r-- | tools/h5repack/h5repack_verify.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack_verify.c b/tools/h5repack/h5repack_verify.c index bbf0492..61529e3 100644 --- a/tools/h5repack/h5repack_verify.c +++ b/tools/h5repack/h5repack_verify.c @@ -183,6 +183,11 @@ int h5repack_verify(const char *fname, if ((dcpl_id=H5Dget_create_plist(dset_id))<0) goto error; + if (options->verbose) { + printf(" %-10s %s\n", "dataset",name ); + print_filters(dcpl_id); + } + /*------------------------------------------------------------------------- * filter check *------------------------------------------------------------------------- @@ -251,6 +256,10 @@ int h5repack_verify(const char *fname, if ((dcpl_id=H5Dget_create_plist(dset_id))<0) goto error; + if (options->verbose) { + printf(" %-10s %s\n", "dataset",name ); + print_filters(dcpl_id); + } /*------------------------------------------------------------------------- * filter check *------------------------------------------------------------------------- |