mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r8281] Purpose:
code clean, change test script Description: removed soem debugging messages changed the chunking command line call to a non square dimensionality Solution: Platforms tested: linux Misc. update:
This commit is contained in:
parent
e0fee4d7c9
commit
9c79ce84ee
@ -115,9 +115,9 @@ TOOLTEST -i test4.h5 -o test4.out.h5 -f "FLET"
|
||||
DIFFTEST test4.h5 test4.out.h5
|
||||
TOOLTEST -i test4.h5 -o test4.out.h5 -f "dset1:SHUF" -f "dset1,dset2:GZIP 6"
|
||||
DIFFTEST test4.h5 test4.out.h5
|
||||
TOOLTEST -i test4.h5 -o test4.out.h5 -l "dset1:CHUNK 20x20" -f "dset1,dset2:SZIP 8"
|
||||
TOOLTEST -i test4.h5 -o test4.out.h5 -l "dset1:CHUNK 20x10" -f "dset1,dset2:SZIP 8"
|
||||
DIFFTEST test4.h5 test4.out.h5
|
||||
TOOLTEST -i test4.h5 -o test4.out.h5 -l "CHUNK 20x20"
|
||||
TOOLTEST -i test4.h5 -o test4.out.h5 -l "CHUNK 20x10"
|
||||
DIFFTEST test4.h5 test4.out.h5
|
||||
TOOLTEST -i test4.h5 -o test4.out.h5 -l "COMPA"
|
||||
DIFFTEST test4.h5 test4.out.h5
|
||||
@ -131,6 +131,4 @@ TOOLTEST -i test4.h5 -o test4.out.h5 -e "h5repack_info.txt"
|
||||
DIFFTEST test4.h5 test4.out.h5
|
||||
|
||||
|
||||
|
||||
|
||||
exit $nerrors
|
||||
|
@ -91,7 +91,6 @@ int make_filters(hid_t loc_id)
|
||||
* make several dataset with filters
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* create a space */
|
||||
if((sid = H5Screate_simple(RANK, dims, NULL))<0)
|
||||
return -1;
|
||||
@ -102,8 +101,6 @@ int make_filters(hid_t loc_id)
|
||||
if(H5Pset_chunk(dcpl, RANK, chunk_dims)<0)
|
||||
goto out;
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* SZIP
|
||||
*-------------------------------------------------------------------------
|
||||
@ -145,7 +142,7 @@ int make_filters(hid_t loc_id)
|
||||
* checksum
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#if 1
|
||||
#if defined (H5_HAVE_FILTER_FLETCHER32)
|
||||
/* remove the filters from the dcpl */
|
||||
if (H5Premove_filter(dcpl,H5Z_FILTER_ALL)<0)
|
||||
goto out;
|
||||
|
@ -807,8 +807,10 @@ test_filterqueue(void)
|
||||
TEST_ERROR;
|
||||
if (h5repack_addlayout("dset1:CHUNK 20x10",&pack_options)<0)
|
||||
TEST_ERROR;
|
||||
#if defined (H5_HAVE_FILTER_FLETCHER32)
|
||||
if (h5repack_addfilter("dset1:FLET",&pack_options)<0)
|
||||
TEST_ERROR;
|
||||
#endif
|
||||
if (h5repack_addfilter("dset1:SHUF",&pack_options)<0)
|
||||
TEST_ERROR;
|
||||
if (h5repack_addfilter("dset1:SZIP 8",&pack_options)<0)
|
||||
|
Loading…
Reference in New Issue
Block a user