diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-07-13 19:09:41 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-07-13 19:09:41 (GMT) |
commit | bc6ab7c0a6ff27d3d52707419385ccd0771ffa0c (patch) | |
tree | e21b848fed677413addbdf6bee7fd2240c66c577 /tools/h5repack/h5repack.h | |
parent | 803bb3e532c0c2ff26f6b7cc115a8c6f33ea00f5 (diff) | |
download | hdf5-bc6ab7c0a6ff27d3d52707419385ccd0771ffa0c.zip hdf5-bc6ab7c0a6ff27d3d52707419385ccd0771ffa0c.tar.gz hdf5-bc6ab7c0a6ff27d3d52707419385ccd0771ffa0c.tar.bz2 |
[svn-r8869] Purpose:
h5repack changes
Description:
there were some requests to change some minor h5repack features
h5repack only made a warning about a non available filter in verbose mode ( -v )
without -v it kept silent, and users sometimes missed this warning
the request was that it should print this warning always. so, the new format, is e.g
./h5repack -i test_szip.h5 -o out.h5
Warning: dataset </dset_szip> cannot be read, SZIP filter is not available
due to this, and to avoid a lot of these messages in the shell test script, I modified
the script h5repack.sh so that it detects the presence of all filters in the environment
(previously it only detected SZIP)
the test files were also divided in more files , to make the script code easier to
follow
Solution:
Platforms tested:
linux
AIX (no szip)
solaris (no szip, no gzip )
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r-- | tools/h5repack/h5repack.h | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h index ef6dca6..eb05316 100644 --- a/tools/h5repack/h5repack.h +++ b/tools/h5repack/h5repack.h @@ -264,16 +264,26 @@ int parse_number(char *str); */ #define FNAME1 "test1.h5" -#define FNAME1OUT "test1out.h5" +#define FNAME1OUT "test1.out.h5" #define FNAME2 "test2.h5" -#define FNAME2OUT "test2out.h5" +#define FNAME2OUT "test2.out.h5" #define FNAME3 "test3.h5" -#define FNAME3OUT "test3out.h5" +#define FNAME3OUT "test3.out.h5" #define FNAME4 "test4.h5" -#define FNAME4OUT "test4out.h5" +#define FNAME4OUT "test4.out.h5" #define FNAME5 "test5.h5" -#define FNAME5OUT "test5out.h5" +#define FNAME5OUT "test5.out.h5" #define FNAME6 "test6.h5" +#define FNAME7 "test_szip.h5" +#define FNAME8 "test_deflate.h5" +#define FNAME9 "test_shuffle.h5" +#define FNAME10 "test_fletcher32.h5" +#define FNAME11 "test_all.h5" +#define FNAME7OUT "test_szip.out.h5" +#define FNAME8OUT "test_deflate.out.h5" +#define FNAME9OUT "test_shuffle.out.h5" +#define FNAME10OUT "test_fletcher32.out.h5" +#define FNAME11OUT "test_all.out.h5" int make_testfiles(void); @@ -300,10 +310,6 @@ void write_dset_in(hid_t loc_id, int make_diffs /* flag to modify data buffers */); void write_null_dset(hid_t loc_id); -int make_filters(hid_t loc_id); -int make_layout(hid_t loc_id); - - /*------------------------------------------------------------------------- * tests utils *------------------------------------------------------------------------- |