hdf5/tools/testfiles
Pedro Vicente Nunes bd1fe8cd74 [svn-r16614] 3. #1501 (B1) tools bug if dataset is larger than H5TOOLS_BUFSIZE limit.
ISSUE : the tools use the following formula to read by hyperslabs: hyperslab_size[i] = MIN( dim_size[i], H5TOOLS_BUFSIZE / datum_size) where H5TOOLS_BUFSIZE is a constant defined of 1024K. This is OK as long as the datum_size does not exceed 1024K, otherwise we have a hyperslab size of 0 (since 1024K/(greater than 1024K) = 0). This affects h5dump. h5repack, h5diff
SOLUTION: add a check for a 0 size and define as 1 if so. 
TEST FOR H5DUMP: Defined a case in the h5dump test generator program of such a type (an array type of doubles with a large array dimension, that was the case the user reported).  Since the written file commited in svn would be around 1024K, opted for not writing the data (the part of the code where the hyperslab is defined is executed, since h5dump always reads the files). Defined a macro WRITE_ARRAY to enable such writing if needed. Added a run on the h5dump shell script. Added 2 new files to svn: tools/testfiles/tarray8.ddl, tools/testfiles/tarray8.h5. NOTE: while doing this I thought of adding this dataset case to an existing file, but that would add the large array output to those files (the ddls). The issue is that the file list is increasing.
TEST FOR H5DIFF: for h5diff the check for reading by hyperslabs is H5TOOLS_MALLOCSIZE (128 * H5TOOLS_BUFSIZE) or 128 Mb. This makes it not possible to add such a file to svn, so used the same method as h5dump (only write the dataset if WRITE_ARRAY is defined). As opposed to h5dump, the hyperslab code is NOT executed when the dataset is empty (dataset is not read). Added the new dataset to existing files and shell run (tools/h5diff/testfiles/h5diff_dset1.h5 and tools/h5diff/testfiles/h5diff_dset2.h5 and output in tools/h5diff/testfiles/h5diff_80.txt).
TEST FOR H5REPACK: similar issue as h5diff with the difference that the hyperslab code is run. Added a run to the shell script (with a filter, otherwise the code uses H5Ocopy). 

tested: linux (h5commitest failed , apparently it did not detect the code changes in /tools/lib that fix the bug: the error in an assertion in the hyperslab of 0. I am sure that making h5ccomitest --distclean will detect the new code , but don't want to wait more 3 hours :-) )
2009-03-25 15:28:50 -05:00
..
family_file00000.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00001.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00002.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00003.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00004.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00005.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00006.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00007.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00008.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00009.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00010.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00011.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00012.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00013.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00014.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00015.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00016.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
family_file00017.h5 [svn-r10847] Purpose: Bug fix 2005-06-02 16:00:23 -05:00
h5mkgrp_help.ls [svn-r13297] Description: 2007-02-14 08:54:11 -05:00
h5mkgrp_nested_latest.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_nested_mult_latest.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_nested_mult.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_nested.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_several_latest.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_several.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_single_latest.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_single.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
h5mkgrp_version.ls [svn-r13297] Description: 2007-02-14 08:54:11 -05:00
help-1.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
help-2.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
help-3.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
nosuchfile.ls [svn-r12535] Added a new test for testing error handling of non-existing file. 2006-08-03 22:59:24 -05:00
out3.h5import [svn-r13775] 2007-05-21 10:24:50 -05:00
taindices.h5 [svn-r13280] 2007-02-12 14:57:44 -05:00
tall-1.ddl [svn-r14976] Support for external links follow up. The format is to print the target object as part of TARGETPATH, noted with some extra indentation 2008-05-12 14:32:13 -05:00
tall-1.ls [svn-r2770] 2000-10-31 11:29:57 -05:00
tall-2.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tall-2.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
tall-2A.ddl [svn-r14976] Support for external links follow up. The format is to print the target object as part of TARGETPATH, noted with some extra indentation 2008-05-12 14:32:13 -05:00
tall-2A.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
tall-2B.ddl [svn-r14976] Support for external links follow up. The format is to print the target object as part of TARGETPATH, noted with some extra indentation 2008-05-12 14:32:13 -05:00
tall-3.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tall-4s.ddl [svn-r13134] 2007-01-10 14:15:16 -05:00
tall-5s.ddl [svn-r13134] 2007-01-10 14:15:16 -05:00
tall.h5 [svn-r13580] Description: 2007-04-03 14:51:14 -05:00
tall.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
tallfilters.ddl [svn-r14905] Introduced a ratio formula compression ratio = uncompressed size / compressed size 2008-05-01 11:45:32 -05:00
tarray1.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray1.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray1.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tarray1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tarray2.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tarray3.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray3.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray3.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tarray4.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray4.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray5.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray5.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray6.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray6.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray6.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tarray7.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tarray7.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tarray7.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tarray8.ddl [svn-r16614] 3. #1501 (B1) tools bug if dataset is larger than H5TOOLS_BUFSIZE limit. 2009-03-25 15:28:50 -05:00
tarray8.h5 [svn-r16614] 3. #1501 (B1) tools bug if dataset is larger than H5TOOLS_BUFSIZE limit. 2009-03-25 15:28:50 -05:00
tattr2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tattr2.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tattr-1.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tattr-2.ddl [svn-r8790] Purpose: 2004-07-02 14:07:17 -05:00
tattr-3.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tattr.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tattr.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tbigdims.ddl [svn-r13296] 2007-02-14 00:39:21 -05:00
tbigdims.h5 [svn-r13296] 2007-02-14 00:39:21 -05:00
tbin1.ddl [svn-r14173] 2007-10-02 13:34:30 -05:00
tbin2.ddl [svn-r14173] 2007-10-02 13:34:30 -05:00
tbin3.ddl [svn-r14173] 2007-10-02 13:34:30 -05:00
tbin4.ddl [svn-r14903] Undoing change committed in r14902. 2008-04-30 14:51:13 -05:00
tbinary.h5 [svn-r15143] 2008-06-05 09:37:21 -05:00
tbitfields.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tbitfields.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tboot1.ddl [svn-r13580] Description: 2007-04-03 14:51:14 -05:00
tboot2.ddl [svn-r12743] Took out printout for driver information because the driver used can be different from the driver 2006-10-11 10:21:10 -05:00
tchar1.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tchar.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tchunked.ddl [svn-r8826] Purpose: 2004-07-07 17:02:34 -05:00
tcomp-1.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tcomp-1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tcomp-2.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tcomp-3.ddl [svn-r14172] 2007-10-02 11:45:46 -05:00
tcomp-4.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tcompact.ddl [svn-r8826] Purpose: 2004-07-07 17:02:34 -05:00
tcompound2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tcompound2.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
tcompound_complex.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tcompound_complex.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tcompound.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tcompound.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
tcontents.ddl [svn-r14136] Description: 2007-09-06 10:54:22 -05:00
tcontiguos.ddl [svn-r8826] Purpose: 2004-07-07 17:02:34 -05:00
tdatareg.ddl [svn-r15446] bug fix 2008-08-07 10:15:04 -05:00
tdatareg.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tdatareg.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tdataregbe.ls [svn-r16518] have 2 expected outputs for 2 h5ls runs depending if run on a big or little endian machine. Configure.in was modified to export a variable carrying endianess information to testh5ls.sh. This script then compares the current run with 2 expected outputs, one for a big-endian machine (linew was used to generate the output), other for little endian (jam was used to generate the output) 2009-02-26 15:21:50 -05:00
tdataregle.ls [svn-r16518] have 2 expected outputs for 2 h5ls runs depending if run on a big or little endian machine. Configure.in was modified to export a variable carrying endianess information to testh5ls.sh. This script then compares the current run with 2 expected outputs, one for a big-endian machine (linew was used to generate the output), other for little endian (jam was used to generate the output) 2009-02-26 15:21:50 -05:00
tdeflate.ddl [svn-r14905] Introduced a ratio formula compression ratio = uncompressed size / compressed size 2008-05-01 11:45:32 -05:00
tdset2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tdset2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tdset-1.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tdset-1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tdset-2.ddl [svn-r9727] Purpose: 2004-12-29 09:26:20 -05:00
tdset-3s.ddl [svn-r13134] 2007-01-10 14:15:16 -05:00
tdset.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tdset.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty-dtd-2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty-dtd-uri.h5.xml [svn-r12736] Description: 2006-10-08 23:18:18 -05:00
tempty-dtd.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty-nons-2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty-nons-uri.h5.xml [svn-r12736] Description: 2006-10-08 23:18:18 -05:00
tempty-nons.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty-ns-2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty-ns.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tempty.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tempty.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tempty.ls [svn-r3230] Purpose: 2001-01-03 14:20:18 -05:00
tenum.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tenum.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
texternal.ddl [svn-r8749] Purpose: 2004-06-28 09:29:20 -05:00
textlink-1.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
textlink.h5 [svn-r13580] Description: 2007-04-03 14:51:14 -05:00
textlink.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
textlinkfar.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
textlinkfar.h5 [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
textlinksrc-1.ls [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
textlinksrc-2.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
textlinksrc-3.ls [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
textlinksrc-4.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
textlinksrc-5.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
textlinksrc-6.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
textlinksrc-7.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
textlinksrc.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
textlinksrc.h5 [svn-r15668] Purpose: Add feature requested in bug #1282 2008-09-21 13:35:43 -05:00
textlinktar.h5 [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
tfamily00000.h5 [svn-r16377] Revert unintentional change to tfamily00000.h5 2009-01-29 15:51:25 -05:00
tfamily00001.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00002.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00003.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00004.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00005.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00006.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00007.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00008.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00009.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily00010.h5 [svn-r5006] Purpose: 2002-02-25 17:38:47 -05:00
tfamily.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tfcontents1.h5 [svn-r13580] Description: 2007-04-03 14:51:14 -05:00
tfcontents2.h5 [svn-r12528] Added User-Defined links to the library. 2006-08-02 18:41:53 -05:00
tfill.ddl [svn-r8812] Purpose: 2004-07-06 15:07:03 -05:00
tfilters.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tfletcher32.ddl [svn-r8826] Purpose: 2004-07-07 17:02:34 -05:00
tfpformat.ddl [svn-r14934] Add a test for the floating point user defined printf format 2008-05-05 15:06:22 -05:00
tfpformat.h5 [svn-r14934] Add a test for the floating point user defined printf format 2008-05-05 15:06:22 -05:00
tfvalues.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tgroup-1.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tgroup-1.ls [svn-r15804] Purpose: Add option to h5ls to enable external link traversal. 2008-10-07 09:54:26 -05:00
tgroup-2.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tgroup-2.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tgroup-3.ls [svn-r15133] Description: 2008-06-03 19:17:27 -05:00
tgroup.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tgroup.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tgroup.ls [svn-r2770] 2000-10-31 11:29:57 -05:00
tgrp_comments.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tgrp_comments.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
thlink-1.ddl [svn-r12883] 2006-11-08 16:24:41 -05:00
thlink-1.ls [svn-r12883] 2006-11-08 16:24:41 -05:00
thlink-2.ddl [svn-r8790] Purpose: 2004-07-02 14:07:17 -05:00
thlink-3.ddl [svn-r8790] Purpose: 2004-07-02 14:07:17 -05:00
thlink-4.ddl [svn-r8790] Purpose: 2004-07-02 14:07:17 -05:00
thlink-5.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
thlink.h5 [svn-r12883] 2006-11-08 16:24:41 -05:00
thlink.h5.xml [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
thyperslab.ddl [svn-r13280] 2007-02-12 14:57:44 -05:00
thyperslab.h5 [svn-r13280] 2007-02-12 14:57:44 -05:00
tindicesno.ddl [svn-r13280] 2007-02-12 14:57:44 -05:00
tindicessub1.ddl [svn-r14437] bug fix for h5dump subsetting (deal with blocks)and new test runs 2008-01-16 11:12:08 -05:00
tindicessub2.ddl [svn-r14437] bug fix for h5dump subsetting (deal with blocks)and new test runs 2008-01-16 11:12:08 -05:00
tindicessub3.ddl [svn-r14437] bug fix for h5dump subsetting (deal with blocks)and new test runs 2008-01-16 11:12:08 -05:00
tindicessub4.ddl [svn-r14437] bug fix for h5dump subsetting (deal with blocks)and new test runs 2008-01-16 11:12:08 -05:00
tindicesyes.ddl [svn-r13280] 2007-02-12 14:57:44 -05:00
tlarge_objname.ddl [svn-r8622] Purpose: 2004-06-07 11:40:25 -05:00
tlarge_objname.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tldouble.h5 [svn-r12171] Purpose: 2006-03-28 16:25:10 -05:00
tlonglinks.ddl [svn-r10637] Purpose: 2005-04-21 01:55:42 -05:00
tlonglinks.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tloop2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tloop2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tloop-1.ddl [svn-r8790] Purpose: 2004-07-02 14:07:17 -05:00
tloop-1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tloop.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tloop.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tmany.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tmany.h5.xml [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
tmulti-b.h5 [svn-r5008] Purpose: 2002-02-25 18:06:26 -05:00
tmulti-g.h5 [svn-r5008] Purpose: 2002-02-25 18:06:26 -05:00
tmulti-l.h5 [svn-r13139] Fixed the MULTI problem (Bug #731) that corrupted the data. The problem 2007-01-12 15:29:43 -05:00
tmulti-o.h5 [svn-r13139] Fixed the MULTI problem (Bug #731) that corrupted the data. The problem 2007-01-12 15:29:43 -05:00
tmulti-r.h5 [svn-r13139] Fixed the MULTI problem (Bug #731) that corrupted the data. The problem 2007-01-12 15:29:43 -05:00
tmulti-s.h5 [svn-r13139] Fixed the MULTI problem (Bug #731) that corrupted the data. The problem 2007-01-12 15:29:43 -05:00
tmulti.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tname-amp.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tname-amp.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tname-apos.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tname-apos.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tname-gt.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tname-gt.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tname-lt.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tname-lt.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tname-quot.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tname-quot.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tname-sp.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tname-sp.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tnamed_dtype_attr.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
tnamed_dtype_attr.h5 [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
tnamed_dtype_attr.h5.xml [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
tnbit.ddl [svn-r14905] Introduced a ratio formula compression ratio = uncompressed size / compressed size 2008-05-01 11:45:32 -05:00
tnestcomp-1.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tnestcomp-1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tnestedcomp.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tnestedcomp.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tnodata.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tnodata.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tnofilename.ddl [svn-r15991] Merge with 1.8 rev 15969 2008-10-29 15:11:51 -05:00
tnullspace.ddl [svn-r8714] *** empty log message *** 2004-06-21 15:59:07 -05:00
tnullspace.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tobjref.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tobjref.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
topaque.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
topaque.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
torderattr1.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
torderattr1.h5.xml [svn-r14201] attribute ordering: added objects that do not have creation order tracked 2007-10-11 14:42:30 -05:00
torderattr2.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
torderattr2.h5.xml [svn-r14201] attribute ordering: added objects that do not have creation order tracked 2007-10-11 14:42:30 -05:00
torderattr3.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
torderattr3.h5.xml [svn-r14201] attribute ordering: added objects that do not have creation order tracked 2007-10-11 14:42:30 -05:00
torderattr4.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
torderattr4.h5.xml [svn-r14201] attribute ordering: added objects that do not have creation order tracked 2007-10-11 14:42:30 -05:00
torderattr.h5 [svn-r14201] attribute ordering: added objects that do not have creation order tracked 2007-10-11 14:42:30 -05:00
tordergr1.ddl [svn-r14172] 2007-10-02 11:45:46 -05:00
tordergr2.ddl [svn-r14172] 2007-10-02 11:45:46 -05:00
tordergr3.ddl [svn-r14172] 2007-10-02 11:45:46 -05:00
tordergr4.ddl [svn-r14172] 2007-10-02 11:45:46 -05:00
tordergr5.ddl [svn-r14172] 2007-10-02 11:45:46 -05:00
tordergr.h5 [svn-r14164] 2007-10-01 09:49:23 -05:00
tperror.ddl [svn-r8812] Purpose: 2004-07-06 15:07:03 -05:00
tref-escapes-at.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tref-escapes-at.h5.xml [svn-r14180] Description: 2007-10-04 10:06:28 -05:00
tref-escapes.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tref-escapes.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tref.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tref.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
treference.ddl [svn-r14180] Description: 2007-10-04 10:06:28 -05:00
tsaf.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tsaf.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tsaf.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
tsaf.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tscaleoffset.ddl [svn-r14905] Introduced a ratio formula compression ratio = uncompressed size / compressed size 2008-05-01 11:45:32 -05:00
tshuffle.ddl [svn-r8826] Purpose: 2004-07-07 17:02:34 -05:00
tslink-1.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tslink-1.ls [svn-r15668] Purpose: Add feature requested in bug #1282 2008-09-21 13:35:43 -05:00
tslink-2.ddl [svn-r7542] Purpose: 2003-10-05 16:23:57 -05:00
tslink.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tslink.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tsplit_file-m.h5 [svn-r13139] Fixed the MULTI problem (Bug #731) that corrupted the data. The problem 2007-01-12 15:29:43 -05:00
tsplit_file-r.h5 [svn-r13139] Fixed the MULTI problem (Bug #731) that corrupted the data. The problem 2007-01-12 15:29:43 -05:00
tsplit_file.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tstr2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tstr2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tstr3.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tstr-1.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tstr-1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tstr-2.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tstr.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tstr.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tstring2.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tstring-at.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tstring-at.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tstring.ddl [svn-r12456] Mark dumper output file as binary, missed during CVS conversion 2006-07-07 12:53:06 -05:00
tstring.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tstring.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tstringe.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tszip.ddl [svn-r14905] Introduced a ratio formula compression ratio = uncompressed size / compressed size 2008-05-01 11:45:32 -05:00
tudlink-1.ddl [svn-r12528] Added User-Defined links to the library. 2006-08-02 18:41:53 -05:00
tudlink-1.ls [svn-r15668] Purpose: Add feature requested in bug #1282 2008-09-21 13:35:43 -05:00
tudlink-2.ddl [svn-r12528] Added User-Defined links to the library. 2006-08-02 18:41:53 -05:00
tudlink.h5 [svn-r13580] Description: 2007-04-03 14:51:14 -05:00
tudlink.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tuserfilter.ddl [svn-r8826] Purpose: 2004-07-07 17:02:34 -05:00
tvldtypes1.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tvldtypes1.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tvldtypes1.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tvldtypes1.ls [svn-r14284] Description: 2007-11-24 11:49:36 -05:00
tvldtypes2.ddl [svn-r8840] Purpose: 2004-07-08 16:49:40 -05:00
tvldtypes2.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tvldtypes2.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tvldtypes2be.ls [svn-r16518] have 2 expected outputs for 2 h5ls runs depending if run on a big or little endian machine. Configure.in was modified to export a variable carrying endianess information to testh5ls.sh. This script then compares the current run with 2 expected outputs, one for a big-endian machine (linew was used to generate the output), other for little endian (jam was used to generate the output) 2009-02-26 15:21:50 -05:00
tvldtypes2le.ls [svn-r16518] have 2 expected outputs for 2 h5ls runs depending if run on a big or little endian machine. Configure.in was modified to export a variable carrying endianess information to testh5ls.sh. This script then compares the current run with 2 expected outputs, one for a big-endian machine (linew was used to generate the output), other for little endian (jam was used to generate the output) 2009-02-26 15:21:50 -05:00
tvldtypes3.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tvldtypes3.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tvldtypes3.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tvldtypes4.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tvldtypes4.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tvldtypes4.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tvldtypes5.ddl [svn-r8773] Purpose: 2004-06-30 13:45:14 -05:00
tvldtypes5.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tvldtypes5.h5.xml [svn-r13179] 2007-01-23 10:39:24 -05:00
tvlstr.ddl [svn-r15886] Purpose: Close bug 1332 2008-10-15 22:52:16 -05:00
tvlstr.h5 [svn-r15458] Purpose: Modify the library to take the proper action when files with incorrect 2008-08-11 10:16:34 -05:00
tvlstr.h5.xml [svn-r14144] Description: 2007-09-13 10:44:56 -05:00
tvms.ddl [svn-r12221] Purpose: 2006-04-09 22:03:30 -05:00
tvms.h5 [svn-r12221] Purpose: 2006-04-09 22:03:30 -05:00