diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-10-23 19:51:51 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-10-23 19:51:51 (GMT) |
commit | cf86beb9832c21db179fad5bb00f93bf413481cd (patch) | |
tree | c2f09c688ee1dc886e31c5bbef5249ea1af6dbf2 /tools/h5repack/test_h5repack_main.c | |
parent | f4c4923193a14899b342e4ce37153b296ecd02db (diff) | |
download | hdf5-cf86beb9832c21db179fad5bb00f93bf413481cd.zip hdf5-cf86beb9832c21db179fad5bb00f93bf413481cd.tar.gz hdf5-cf86beb9832c21db179fad5bb00f93bf413481cd.tar.bz2 |
[svn-r7717] Purpose:
new features of h5repack
Description:
added copy routine
added parsing of command line arguments
Platforms tested:
linux, solaris, IRIX
Misc. update:
Diffstat (limited to 'tools/h5repack/test_h5repack_main.c')
-rw-r--r-- | tools/h5repack/test_h5repack_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/test_h5repack_main.c b/tools/h5repack/test_h5repack_main.c index 1768609..9ec780a 100644 --- a/tools/h5repack/test_h5repack_main.c +++ b/tools/h5repack/test_h5repack_main.c @@ -53,9 +53,9 @@ test() if (h5repack_init (&options, 0)<0) TEST_ERROR; - if (h5repack_addcomp("dset2:GZIP 9",&options)<0) + if (h5repack_addcomp("dset1:GZIP 9",&options)<0) TEST_ERROR; - if (h5repack_addchunk("dset2:5x4",&options)<0) + if (h5repack_addchunk("dset1:5x4",&options)<0) TEST_ERROR; if (h5repack(FILENAME,FILENAME_OUT,&options)<0) TEST_ERROR; |