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/testh5repack_main.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/testh5repack_main.c')
-rw-r--r-- | tools/h5repack/testh5repack_main.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/tools/h5repack/testh5repack_main.c b/tools/h5repack/testh5repack_main.c index fc7d571..6b829ee 100644 --- a/tools/h5repack/testh5repack_main.c +++ b/tools/h5repack/testh5repack_main.c @@ -322,7 +322,24 @@ test_filter_szip(void) TEST_ERROR; if (h5repack_end (&pack_options)<0) TEST_ERROR; - + +/*------------------------------------------------------------------------- + * test all objects option + *------------------------------------------------------------------------- + */ + + if (h5repack_init (&pack_options, 0)<0) + TEST_ERROR; + if (h5repack_addfilter("SZIP 8",&pack_options)<0) + TEST_ERROR; + if (h5repack(FNAME4,FNAME4OUT,&pack_options)<0) + TEST_ERROR; + if (h5diff(FNAME4,FNAME4OUT,NULL,NULL,&diff_options) == 1) + TEST_ERROR; + if (h5repack_verify(FNAME4OUT,&pack_options)<=0) + TEST_ERROR; + if (h5repack_end (&pack_options)<0) + TEST_ERROR; PASSED(); #else |