summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r3018] Purpose:Quincey Koziol2000-11-291-1/+1
| | | | | | | | | | | Bug fix Description: Had incorrect logic in testing for file families when v1.2 compatibility was enabled.. Solution: Corrected to match non-compatibility code. Platforms tested: Linux 2.2.16-3smp (eirene)
* [svn-r3017] Purpose:Quincey Koziol2000-11-291-5/+10
| | | | | | | | | | Code cleanup/bug fix Description: Variable length datatypes were leaking memory when being dumped. Solution: Reclaim the VL data after each element has been dumped out. Platforms tested: FreeBSD 4.2 (hawkwind) & Solaris 2.6 (baldric)
* [svn-r3016] Purpose:Quincey Koziol2000-11-291-3/+3
| | | | | | | | | Re-enabling features. Description: Re-add the tests which had been core-dumping on a couple of platforms, now that the underlying bug is fixed. Platforms tested: FreeBSD 4.2 (hawkwind) & Solaris 2.6 (baldric)
* [svn-r3015] Purpose:Quincey Koziol2000-11-291-27/+115
| | | | | | | | | | | | | | | | | Bug fixes Description: Patch things back up from incompletely changing some variables in yesterday's code cleanup, this should fix the compiler errors that Kent and Bill have found in the CVS version of the code. Also, fix a bug buried in the datatype conversions when compound datasets were nested inside an array or variable-length datatype. Internally require that any datatype which contains a compound datatype sets the "need_bkg" conversion flag so a background buffer to pass to the compound datatype conversion is allocated. Platforms tested: FreeBSD 4.2 (hawkwind) & Solaris 2.6 (baldric)
* [svn-r3014] Purpose:Quincey Koziol2000-11-281-9/+16
| | | | | | | | | | | Bug fix. Description: Data dumping routines weren't correctly handling scalar dataspaces when dumping them. Under some circumstances, it would get into infinite loops. Solution: Small patches to avoid problems when the number of dimensions is zero. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3013] Purpose:Quincey Koziol2000-11-282-7/+4
| | | | | | | | | Code cleanup Description: Cleaned up a few warnings which cropped up with different configure switches. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3012] Purpose:Albert Cheng2000-11-282-404/+405
| | | | | | | | | | | | | New doc and update Description: The original openmp-hdf5.html contains a bunch of C source code. HTML does not like source code, especially C-code that contained <...>. It gobbled it badly. Solution: Moved the source code to a new file, openmp-hdf5.c and make a reference to it from openmp-hdf5.html. Platforms tested: Viewed via IE on an NT box.
* [svn-r3011] Purpose:Albert Cheng2000-11-281-23/+50
| | | | | | Update Platforms tested: Viewed via IE.
* [svn-r3010] Purpose:Quincey Koziol2000-11-289-28/+73
| | | | | | | | | | | | | | Bug fix Description: When the v1.2 compatibility code was turned on, internal functions in the library were getting confused. Solution: Separated guts of H5Pget_driver call into an API function (the definition of which depends on the compatibility switch) and an internal function which always behaves like the v1.3/4 function. Replaced API function calls in the library code with the internal function. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3009] Purpose:Albert Cheng2000-11-281-9/+27
| | | | | | | | | | | | | | New parallel test features Description: Added test cases: INDEPENDENT write with some processes do not participate at all. The library should not hang for this case. COLLECTIVE read/write with some processes asking for zero elements. The library should work properly and not hanging. Some house cleaning: get rid of a conditional directive that was fixed already. Platforms tested: IRIX64,-64,parallel
* [svn-r3008] Purpose:Quincey Koziol2000-11-289-10/+11
| | | | | | | | | | | | | | Code cleanup Description: Several places in the code were using -2 as a default value for various features. However, when a default value is returned from a function that is supposed to return negative on failure, it was causing confusion and extra work for users to check for the special value. Solution: Replaced hard-coded -2 values in the code with symbolic names, then changed symbolic names to 0 instead of -2. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3007] Purpose:Albert Cheng2000-11-281-9/+9
| | | | | | | | | | Feature, kind of Description: Moved the multiple dataset test out of the write-test part so that it can be skipped or tested independent of the other tests. Platforms tested: IRIX64,-64,parallel.
* [svn-r3006] Purpose:Albert Cheng2000-11-281-2/+5
| | | | | | | | | | Bug fix Description: Fixed some typo that cause compiling errors in parallel mode. Also added a default case in the H5Pget_xfer code to catch potential future added data transfer mode. Platforms tested: IRIX64-64, parallel.
* [svn-r3005] Purpose:Quincey Koziol2000-11-2726-77/+993
| | | | | | | | Backward compatibility code Description: Add in code to allow the library to emulate the v1.2 API and behavior. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3004] Purpose:Quincey Koziol2000-11-271-4/+6
| | | | | | | | Feature description. Description: Describe the v1.2 compatibility configure switch Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3003] Purpose:Albert Cheng2000-11-272-3/+48
| | | | | | | | | | | | | | | | | | Bug fix Description: The optimized MPI-IO calls, H5S_mpio_spaces_write/H5S_mpio_spaces_read, are changed for collective data transfer only since they call H5FD_mpio_setup to do setup to eveually call MPI_File_set_view in H5FD_mpio_read or H5FD_mpio_write. MPI_File_set_view is a collective call. Letting independent data transfer use this route would result in hanging. Solution: For now, the checking is being done in H5D_write and H5D_read before H5S_mpio_spaces_write/H5S_mpio_spaces_read is called because the checking code in H5S_mpio_spaces_xfer, though with the right idea, is not correct yet. Platforms tested: IRIX64-64 parallel.
* [svn-r3002] Albert Cheng2000-11-261-9/+16
| | | | | | | | | | | | | | Purpose: Bug fix Description: H5S_mpio_spaces_xfer() did not do clean up all the times especially the MPI_type freeing. Solution: Include the MPI_type freeing as part of cleanup code. Replaced most HRETURN_ERROR(...) with HGOTO_ERROR so that cleanup code will be executed. Platforms tested: IRIX64-64.
* [svn-r3001] MuQun Yang2000-11-251-3/+5
| | | | | | | | | | | | | | | | | | | | | | | Purpose: Fix a bug caught by debug version of windows 2000 at test_compound_5(struct optimization converter). Description: free memory of a variable before checking the result by using that variable. Solution: put free(buf) and free(bkg) after the following block: /* Check results */ if (memcmp(src[1].name, dst[1].name, sizeof(src[1].name)) || src[1].tdim!=dst[1].tdim || src[1].coll_ids[0]!=dst[1].coll_ids[0] || src[1].coll_ids[1]!=dst[1].coll_ids[1] || src[1].coll_ids[2]!=dst[1].coll_ids[2] || src[1].coll_ids[3]!=dst[1].coll_ids[3]) { FAILED(); return 1; } Platforms tested: windows 2000 and confirmed at LINUX(eirene).
* [svn-r3000] MuQun Yang2000-11-251-0/+19
| | | | | | | | | | | | | Purpose: make mtime test available on windows Description: calculating time zone difference on windows Solution: 1.Use /#if WIN32 #endif/ to make sure the modification will not affect other platforms. 2. use <sys/types.h> and <sys/timeb.h> on NT to obtain time zone difference. Platforms tested: windows 2000
* [svn-r2999] MuQun Yang2000-11-251-0/+0
| | | | | | | | | | | | Purpose: update windows-related projects Description: Add new source code (H5Fseq.c) and several test codes into all.zip update hdf5.dsp,hdf5dll.dsp,testhdf5.dsp and testhdf5dll.dsp. update setting for h4toh5 and h5toh4 converters. Solution: Platforms tested: windows 2000
* [svn-r2998] Snapshot version 1.3 release 34HDF Admin2000-11-252-2/+2
|
* [svn-r2997] Raymond Lu2000-11-221-5/+136
| | | | | | | | Purpose: Update Description: Added a new testing program into this file. It shows the way that does parallel computation and serialized I/O.
* [svn-r2995] Snapshot version 1.3 release 33HDF Admin2000-11-222-2/+2
|
* [svn-r2994] Updated with parallel bug fix.Albert Cheng2000-11-221-44/+50
|
* [svn-r2993] Purpose:Albert Cheng2000-11-211-8/+58
| | | | | | | | | | | | | | New feature Description: Added tests to make sure collective read or write works correctly even if some process has no data to transfer. ZROW--process 0 asks for zero rows of data while other processes ask for a slab of rows. ZCOL--process 0 asks for zero columns of data while other processes ask for a slab of columns. Platforms tested: IRIX64 parallel (-64,-n32). cvS: ----------------------------------------------------------------------
* [svn-r2992] Purpose:Quincey Koziol2000-11-211-3/+5
| | | | | | | | | | | Bug workaround Description: tarray4.h5 and tdvltypes4.h5 are causing core dumps on modi4 Solution: Commented out those tests for now. I'll take a look at them after the code freeze for the beta-release is finished. Platforms tested: O2K (modi4)
* [svn-r2991] Purpose:Bill Wendling2000-11-211-3/+24
| | | | | | Adding Files Description: Added new test files to MANIFEST and removed old tests..
* [svn-r2990] Purpose:Albert Cheng2000-11-212-34/+152
| | | | | | | | | | | | | | | | | | | | | Bug fix (feature, kind of) Description: The library used to hang if a collective dataset read/write request does not have the same number of eventual MPIO request. Part of the reason is that H5FD_read/H5FD_write immediately returns succeess if it sees the request size is 0. This caused problem since other processes with I/O to do would be hanging by waiting for the early returned process(es). Solution: H5FD.c: disable the early return code in parallel mode. Make it go on even with "nothing" to transfer. H5D.c: the optimized MPIO xfer routines can handle collect calls correctly when the condition is right (e.g., no conversion). When the COLLECTIVE request cannot be handled correctly without the risk of hanging, the COLLECTIVE is changed to INDEPENDENT calls for the eventual MPIO calls. Platforms tested: IRIX64 parallel (-64, n32), IRIX64 -64 sequential, Linux sequential.
* [svn-r2989] Purpose:Quincey Koziol2000-11-211-1/+20
| | | | | | | Updating for release. Description: Added descriptions of the configure options that have been added to the library recently.
* [svn-r2988] Purpose:Quincey Koziol2000-11-2147-504/+1051
| | | | | | | | Updating test files. Description: Updated test files to reflect changes to DDL. Platforms tested: FreeBSD 4.1.1 (hawkwind)
* [svn-r2987] Purpose:Quincey Koziol2000-11-213-690/+573
| | | | | | | | | Bug fixes and misc. code fixing. Description: Updated to reflect current DDL document. Also changed VL data to be able to be able also dump VL data of any other datatype. Platforms tested: FreeBSD 4.1.1 (hawkwind)
* [svn-r2986] Purpose:Quincey Koziol2000-11-211-122/+123
| | | | | | | | | Corrections & updates Description: Updated and corrected DDL description & examples to include all the current features for the v1.4 release. Lots of changes... Platforms tested: Netscape 4.76
* [svn-r2985] Purpose:Quincey Koziol2000-11-211-1/+5
| | | | | | Documentation Description: Mentioned the addition of the array datatype for the next release.
* [svn-r2984] Purpose:Bill Wendling2000-11-211-2/+2
| | | | | | | | | | | | | | | | | | | | Bug fix Description: The code for determining what a string should print out if it was declared as H5T_STR_NULLTERM (C strings), H5T_STR_SPACEPAD (Fortran strings), or H5T_STR_NULLPAD (print null characters to the end of the line) was mucked. A user had a problem with it and suggested a change, but the change didn't seem to work properly. Also, if the string was H5T_STR_SPACEPAD, it could have stopped when encountering a NULL even if it hadn't gotten to the end of the string. Solution: Reworked the code to make it more understandable what's happening and to add in support for H5T_STR_SPACEPAD which may have been missing before. Platforms tested: Linux
* [svn-r2983] Purpose:Albert Cheng2000-11-212-9/+9
| | | | | | | | | | | | | | | Simple changes Description: testphdf5.h: Call MPI_Abort when error is detected. MPI_Finalized was used before but it might hang if the test has already encountered errors. Also, it does not do the H5Eprint any more since auto report is on. t_mdest.c: Changed the variable name of rank and nprocs to mpi_rank and mpi_size so that it is the same with the other tests and can use the VRFY macro call. Platforms tested: modi4-64.
* [svn-r2982] Purpose:Bill Wendling2000-11-201-30/+54
| | | | | | Feature add Description: Described how to use the --enable-fortran and --enable-cxx flags.
* [svn-r2981] Purpose:Bill Wendling2000-11-201-2/+1
| | | | | | | | | | | | | Bug fix Description: If TESTH5TOH4 or TESTH4TOH5 wasn't set, then it would mess up the testing process by adding a ``#'' to the for statement (since there was a line-continuation in the definition of the macro). Solution: Placed the macro expansions all on one line so that there's no junk characters picked up by accident. Platforms tested: OSF1 (Gondolin)
* [svn-r2980] Purpose:Albert Cheng2000-11-201-2/+2
| | | | | | | | | | | Bug fix Description: make reconfigure complained syntax error. Solution: The for loop previous added contained a typo. Replaced $$test with $$sub. Platforms tested: modi4-64.
* [svn-r2978] Elena Pourmal2000-11-171-2/+2
| | | | | | | Purpose: Maintenance Description: Added H5f.c and H5ff.f90 and removed H5f90misc* files.
* [svn-r2977] Elena Pourmal2000-11-1714-28/+28
| | | | | | | | | Purpose: Code maintenance Description: Fixed the code to use h5open_f and h5close_f subroutines Platforms tested: Solaris 2.6
* [svn-r2976] Elena Pourmal2000-11-173-5/+5
| | | | | | | | | Purpose: Code maintenance Description: Fixed the code to use h5open_f and h5close_f subroutines. Platforms tested: Solaris2.6
* [svn-r2975] Elena Pourmal2000-11-177-22/+69
| | | | | | | | | | | | | Purpose: Code maintenance and development Description: I added two functions h5open_f and h5close_f to initialize C library and Fortran interface (flags, predefined datatypes, etc). Those calls are required for any F90 program that uses HDF5. I renamed H5f90misc.c and H5f90miscf.f90 files to H5f.c and H5ff.f90. New functions are added to those new files. Platforms tested: Solaris 2.6
* [svn-r2974] Purpose:Quincey Koziol2000-11-171-8/+38
| | | | | | | | | | | | Code bullet-proofing Description: There were several hard-coded values in various places in this test and it wasn't checking for out-of-memory conditions very robustly. Solution: Changed hard-coded values to be computed values and performed better checking for out-of-memory situations. Platforms tested: SGI O2K (modi4) and Solaris 2.6 (baldric)
* [svn-r2973] Purpose:Albert Cheng2000-11-171-40/+41
| | | | | | | | | | | | | | Bug fix, cleanup,... Description: The test was doing the hyperslab select incorrectly (thinking count was the block length. Solution: Fixed it to do the correct hyperslab selection. Changed it to calculate different data for different datasets. Changed output by rows instead by cols. It tests the purpose of creating multiple datasets the same but runs faster. Platforms tested: modi4-64.
* [svn-r2972] Elena Pourmal2000-11-171-3/+3
| | | | | | | | | | | | Purpose: Bug fix Description: HP and AIX compilers did not like duplicate array declarations in common blocks statements. Solution: Removed duplication Platforms tested: SP2 and HPUX 11.00
* [svn-r2971] Purpose:Bill Wendling2000-11-173-3/+3
| | | | | | | | | | | Bug fix Description: With the changing of the spelling error in the h5ls usage statement, these testfiles puked. Solution: Corrected them in there. Platforms tested: Linux
* [svn-r2970] Purpose:Bill Wendling2000-11-171-0/+1
| | | | Added ./tools/testfiles/tvldtypes.ls to the MANIFEST
* [svn-r2969] Purpose:Bill Wendling2000-11-171-13/+31
| | | | | | | | | | | Addtion Description: Added variable length datatypes to the DDL and put an example in the "example" thingy at the bottom. Doo dah doo dah. Platforms tested: w3m
* [svn-r2968] Purpose:Bill Wendling2000-11-171-8/+26
| | | | | | | | Update Description: Updated the description of h5ls flags. Platforms tested: w3m
* [svn-r2967] Purpose:Bill Wendling2000-11-171-1/+1
| | | | | | Spelling Fix Description: Changed ``dispalyed'' to ``displayed'' in usage message.