diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-12-31 14:00:36 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-12-31 14:00:36 (GMT) |
commit | 738e808d262a79d43a4697bb731c5d2961a006a2 (patch) | |
tree | 64dbf68fe83ebfad007bd655aa0b2536173053e8 /tools/h5repack/testh5repack_main.c | |
parent | ee2eecf1b43916925411798297a06bffd39b76f2 (diff) | |
download | hdf5-738e808d262a79d43a4697bb731c5d2961a006a2.zip hdf5-738e808d262a79d43a4697bb731c5d2961a006a2.tar.gz hdf5-738e808d262a79d43a4697bb731c5d2961a006a2.tar.bz2 |
[svn-r7999] Purpose:
h5repack new features
Description:
added support/ tests for contiguous and compact layout processing
Solution:
Platforms tested:
linux
solaris
AIX
Misc. update:
Diffstat (limited to 'tools/h5repack/testh5repack_main.c')
-rw-r--r-- | tools/h5repack/testh5repack_main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/h5repack/testh5repack_main.c b/tools/h5repack/testh5repack_main.c index ab5da12..f211adf 100644 --- a/tools/h5repack/testh5repack_main.c +++ b/tools/h5repack/testh5repack_main.c @@ -557,7 +557,6 @@ test_layout_contiguous(void) * test an individual object option *------------------------------------------------------------------------- */ - if (h5repack_init (&pack_options, 0)<0) TEST_ERROR; if (h5repack_addlayout("dset1:CONTI",&pack_options)<0) @@ -724,11 +723,15 @@ int main (void) #endif -#if 0 +#if 1 /* test a copy with layout CONTI options */ nerrors += test_layout_contiguous(); +#endif + +#if 1 + /* test a copy with layout COMPA options */ nerrors += test_layout_compact(); |