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/testfiles | |
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/testfiles')
-rw-r--r-- | tools/testfiles/h5repack_info.txt | 2 | ||||
-rw-r--r-- | tools/testfiles/test1.h5 | bin | 34520 -> 33920 bytes | |||
-rw-r--r-- | tools/testfiles/test3.h5 | bin | 6984 -> 6984 bytes | |||
-rw-r--r-- | tools/testfiles/test4.h5 | bin | 57696 -> 29384 bytes | |||
-rw-r--r-- | tools/testfiles/test5.h5 | bin | 0 -> 259464 bytes | |||
-rw-r--r-- | tools/testfiles/test_all.h5 | bin | 0 -> 5925 bytes | |||
-rw-r--r-- | tools/testfiles/test_deflate.h5 | bin | 0 -> 5954 bytes | |||
-rw-r--r-- | tools/testfiles/test_fletcher32.h5 | bin | 0 -> 7880 bytes | |||
-rw-r--r-- | tools/testfiles/test_shuffle.h5 | bin | 0 -> 7864 bytes | |||
-rw-r--r-- | tools/testfiles/test_szip.h5 | bin | 0 -> 5588 bytes |
10 files changed, 1 insertions, 1 deletions
diff --git a/tools/testfiles/h5repack_info.txt b/tools/testfiles/h5repack_info.txt index 20ed2f8..216948d 100644 --- a/tools/testfiles/h5repack_info.txt +++ b/tools/testfiles/h5repack_info.txt @@ -1 +1 @@ --l dset1:CHUNK=20x20 -f dset1,dset2:SZIP=8 +-l dset1:CHUNK=20x20 -f dset1,dset2:GZIP=1 diff --git a/tools/testfiles/test1.h5 b/tools/testfiles/test1.h5 Binary files differindex 1edac90..fcf276d 100644 --- a/tools/testfiles/test1.h5 +++ b/tools/testfiles/test1.h5 diff --git a/tools/testfiles/test3.h5 b/tools/testfiles/test3.h5 Binary files differindex 7072b02..2ab5c25 100644 --- a/tools/testfiles/test3.h5 +++ b/tools/testfiles/test3.h5 diff --git a/tools/testfiles/test4.h5 b/tools/testfiles/test4.h5 Binary files differindex 6a04a34..223858d 100644 --- a/tools/testfiles/test4.h5 +++ b/tools/testfiles/test4.h5 diff --git a/tools/testfiles/test5.h5 b/tools/testfiles/test5.h5 Binary files differnew file mode 100644 index 0000000..3ef3ad2 --- /dev/null +++ b/tools/testfiles/test5.h5 diff --git a/tools/testfiles/test_all.h5 b/tools/testfiles/test_all.h5 Binary files differnew file mode 100644 index 0000000..5a9d7fd --- /dev/null +++ b/tools/testfiles/test_all.h5 diff --git a/tools/testfiles/test_deflate.h5 b/tools/testfiles/test_deflate.h5 Binary files differnew file mode 100644 index 0000000..840aee0 --- /dev/null +++ b/tools/testfiles/test_deflate.h5 diff --git a/tools/testfiles/test_fletcher32.h5 b/tools/testfiles/test_fletcher32.h5 Binary files differnew file mode 100644 index 0000000..36ca3f5 --- /dev/null +++ b/tools/testfiles/test_fletcher32.h5 diff --git a/tools/testfiles/test_shuffle.h5 b/tools/testfiles/test_shuffle.h5 Binary files differnew file mode 100644 index 0000000..f283612 --- /dev/null +++ b/tools/testfiles/test_shuffle.h5 diff --git a/tools/testfiles/test_szip.h5 b/tools/testfiles/test_szip.h5 Binary files differnew file mode 100644 index 0000000..7d0cb0b --- /dev/null +++ b/tools/testfiles/test_szip.h5 |