summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r4516] Raymond Lu2001-10-031-1/+1
| | | | | | | Purpose: Changed to the new generic property list Platforms tested: Arabica and Hawkwind
* [svn-r4514] Purpose:Albert Cheng2001-10-031-5/+4
| | | | | | | | feature Description: Ignore blank lines in the config file too. Platforms tested: Eirene.
* [svn-r4513] Purpose:Albert Cheng2001-10-022-18/+37
| | | | | | | | | | | | | feature Description: Recognize command line argument in the form of '--*' as a configure command option by default. Since all normal configure options are in the form of '--*', this will simplify the "op-configure <option>" syntax. The latter syntax is still kept in case one would want to pass in some configure argument that does not fit this syntax. Platforms tested: Eirene.
* [svn-r4509] Purpose:Quincey Koziol2001-10-021-0/+91
| | | | | | | | | | | | | Test bug fix. Description: When reading or writing to chunked datasets and the data needed datatype conversion, and the amount of data was more than one conversion buffer, data in the conversion buffer was getting corrupted. Solution: Corrected error in advancing buffer pointer where it was being advanced by the number of elements instead of the number of bytes. Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4508] Purpose:Quincey Koziol2001-10-023-16/+31
| | | | | | | | | | | | | Document bug fix. Description: When reading or writing to chunked datasets and the data needed datatype conversion, and the amount of data was more than one conversion buffer, data in the conversion buffer was getting corrupted. Solution: Corrected error in advancing buffer pointer where it was being advanced by the number of elements instead of the number of bytes. Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4507] Purpose:Quincey Koziol2001-10-021-0/+2
| | | | Document bug fix.
* [svn-r4506] Purpose:Quincey Koziol2001-10-011-3/+155
| | | | | | | | | | | | | | | Bug fix/optimization. Description: Single, contiguous (in memory) hyperslabs are able to be transferred in one I/O operation, but weren't being detected correctly by the code in H5S_all_read()/H5S_all_write() and were getting routed into slower I/O routines. (Or, possibly failing in some circumstances) Solution: Wrote code to correctly detect single contiguous hyperslabs in memory and adjust arrays and buffer pointers describing the memory information so that the entire hyperslab can be transferred in one operation. Platforms Tested: FreeBSD 4.4 (hawkwind)
* [svn-r4505] Purpose:Quincey Koziol2001-10-011-0/+2
| | | | Describe feature fix.
* [svn-r4502] Purpose:Albert Cheng2001-10-012-28/+26
| | | | | | | | | | | | | | | | | | | | | | 'Bug fix' Description: When testing the validity of zlib, the compress() function is used. HDF5 actually requires a newer version of zlib which contains compress2(). Compress2 is tested in later part of the configure. This caused redundent tests and confusion too. Solution: Changed zlib test to look for compress2() instead. Older version of HDF4 libraries (e.g. 4.1r2) would fail this test correctly. This eliminated the possibility of using an older version of HDF4 without using zlib compression in HDF5. But since we need newer version of hdp (with loops detection), the older version hdf4 is not old any more. Remark: the compress2 test is not removed. After this change proven working correctly for all platforms, the extra compress2 test can be removed and source code must be updated too. Platforms tested: modi4: tested with hdf4.1r2 and failed as expected. Tested with newer hdf4 libraries and succeeded as expected.
* [svn-r4501] Snapshot version 1.5 release 11HDF Admin2001-09-304-33/+89
|
* [svn-r4499] Bill Wendling2001-09-282-106/+126
| | | | | | | | | Purpose: Feature Add Description: Add the output of the configure summary to the libhdf5.settings file. Platforms tested: Modi4 Linux
* [svn-r4497] Bill Wendling2001-09-282-44/+52
| | | | | | | | | | | | | Purpose: Final Fantasy...er...fix Description: I fixed the problem with the summary printing newlines when we didn't want it to when using "ksh". Solution: There's a flag '\c' which should be used at the end of the line if you can't use the '-n' flag. Platforms tested: linux and modi4.
* [svn-r4494] Purpose:Quincey Koziol2001-09-281-14/+0
| | | | | | | | | | | | | | | | | | Bug fix. Problem: When an entire dataset was selected (through whatever means, H5S_ALL, making an explicit "all" selection, etc.), the code was not allowing the optimized routine to read the entire dataset in at once when the current dimensions did not match the maximum dimensions and instead was defaulting to a [much] slower method to read in the dataset. Solution: Took out check which was requiring current dimensions to be equal to the maximum dimensions. Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4493] Purpose:Quincey Koziol2001-09-281-0/+4
| | | | | | Document bug fix. Platforms tested: Eyeballed..
* [svn-r4490] Purpose:Quincey Koziol2001-09-281-0/+2
| | | | | | Document bug fix Description: Mention the edge detection chunking bug fix.
* [svn-r4489] Purpose:Quincey Koziol2001-09-282-0/+40
| | | | | | | | | | | | | | | | Bug Fix Description: When writing (or reading) the entire dataset to a chunked dataset, there was a boundary case where the code to generate the description of the piece of the dataset to read into the buffer for data conversion would attempt to read off the boundary of the dataset. This was occuring because the code to detect the edge of the dataset was not propagating the change up through the remaining dimensions when an edge in a fast changing dimension was detected. Solution: Propagate edge detection up through slower changing dimensions properly. Platforms tested: Linux 2.2.18smp (eirene)
* [svn-r4488] Purpose:Quincey Koziol2001-09-283-7/+8
| | | | | | | | | Fix on Kludge Description: Forgot another chunk of parallel I/O code that needed to change for the generic property list kludge... :-/ Platforms tested: Parallel Linux 2.2.18smp (eirene)
* [svn-r4487] Bill Wendling2001-09-272-1267/+1295
| | | | | | | | | | | | Purpose: Bug Fix Description: Some platforms don't handle echo -n correctly. Solution: Copied some code from the configure which determines which flag to give echo. Platforms tested: Linux
* [svn-r4485] Purpose:Quincey Koziol2001-09-271-8/+8
| | | | | | | | Kludge addition Description: Forgot to patch the parallel test files in yesterday's kludge checkin. Platforms tested: Linix 2.2.18smp (eirene)
* [svn-r4482] Purpose:Quincey Koziol2001-09-2629-481/+525
| | | | | | | | | | | | | | | | | | | | | | Kludge Description: Since we're only about halfway through converting the internal use of property lists from the "old way" to the generic property lists, we turned off snapshots to avoid exposing lots of API changes to users, until the APIs settled down. Getting the snapshots rolling again seems to have become a priority, so some changes are going to have to be made now that were going to be postponed until we were completely finished with the conversion. This requires that the old API functions be able to deal with both the old and new property lists smoothly. Solution: Kludge together the property list code so that they can transparently handle dealing with both the old and new property lists Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4476] Updated with changes of H5Pset_split and the new test of configure.Albert Cheng2001-09-261-1/+4
|
* [svn-r4475] Updated with newly added file.Albert Cheng2001-09-261-0/+1
|
* [svn-r4474] Purpose:Albert Cheng2001-09-264-5/+191
| | | | | | | | | | | | New feature. Description: Added a test to verify the correctness of information provided by configure in H5config.h. Some information, such as SIZEOF some types can be hardcoded by config/<machine>. This test verified the information is indeed correct. Currenly, only size of C language types are verified. Platforms tested: Eirene, regular, arabica.
* [svn-r4473] Purpose:Quincey Koziol2001-09-2537-405/+427
| | | | | | | | | | | | | | | | | | | | | Code cleanup for better compatibility with C++ compilers Description: C++ compilers are choking on our C code, for various reasons: we used our UNUSED macro incorrectly when referring to pointer types we used various C++ keywords as variables, etc. we incremented enum's with the ++ operator. Solution: Changed variables, etc.to avoid C++ keywords (new, class, typename, typeid, template) Fixed usage of UNUSED macro from this: char UNUSED *c to this: char * UNUSED c Switched the enums from x++ to x=x+1 Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4472] Bill Wendling2001-09-241-3/+1
| | | | | | | | | | | | | | | | | | | Purpose: Refix Description: Changed if test -d $1; then : else to if test ! -d $1; then since "test ! -d" should work on all platforms and is a much cleaner solution than the original. Platforms tested: Linux
* [svn-r4471] Bill Wendling2001-09-241-10/+11
| | | | | | | | | Purpose: Feature add Description: Changed the "make install" thingy to "make install-all" in the quick-setup guide. Also, changed the version number of HDF5 in the examples from 1.4.0 and 1.2.0 to 1.5.x
* [svn-r4469] Bill Wendling2001-09-231-1/+3
| | | | | | | | | | | | Purpose: Bug Fix Description: Some systems can't handle a test like: if ! test -d "foo"; then Solution: Removed the "!" and made a success a "nop".
* [svn-r4467] Bill Wendling2001-09-212-2/+8
| | | | | | | | | Purpose: Small Bug Fix Description: Made 'install-all' its own Makefile rule. Platforms tested: Linux
* [svn-r4466] Bill Wendling2001-09-2116-147/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | | Purpose: Feature Add Description: Added "install-example" and "install-all" to the Makefile system. The behaviour of the "make install*" options: make install - Installs binaries, libraries, include files, and example programs. make install-examples - Installs only the example programs. The directories are: ${prefix}/doc/hdf5/examples/{c,c++,fortran} make install-all - Install the binaries, libraries, include files, example programs, and documentation. The whole kit-n'-caboodle. make uninstall-examples - Get rid of those example files (but not the ${prefix}/doc/hdf5/examples/... directories) There's a new bin/ program which helps create directories which are deeply nested called "mkdirs". It's a simple shell script. Platforms tested: Linux
* [svn-r4465] MuQun Yang2001-09-211-2/+3
| | | | | | | | | | | | | Purpose: fix a bug Description: In precondition 3, winzip will unzip hdf5xxx.zip into the directory hdf5xxx and users should rename hdf5xxx into hdf5 to correctly build HDF5 library. Solution: correct the sentence in precondition 3. Platforms tested: windows 2000
* [svn-r4464] Bill Wendling2001-09-181-3/+3
| | | | | | | | | | | Purpose: Bug Fix Description: The error codes checked for were hardcoded into the program. Solution: Used the "enum" names instead. Platforms tested: Linux
* [svn-r4462] MuQun Yang2001-09-183-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | Purpose: 1. rearrange project settings to be consistent with UNIX platforms 2. fix bugs on H5Tinit.c and h5pubconf.h windows version. Description: 1. overhead, iopipe and chunk testings are moved to perform directory on UNIX platforms rearrange windows project settings to reflect the changes 2. H5_HAVE_SYS_TIMEB_H is defined in h5pubconf.h, it is only used in the iopipe test. In iopipe.c, H5_HAVE_SYS_TIMEB is used to get the current time before opening HDF5 file. This constant is never defined at h5pubconf.h. So iopipe test failed on windows. 3. intn is still used in windows version H5Tinit.c. 4. redefine H5_inline at h5pubconf.h. That will generate warnings like: ..\..\src\H5private.h(150) : warning C4005: 'H5_inline' : macro redefinition ..\..\src\h5pubconf.h(8) : see previous definition of 'H5_inline' Solution: 1. Rearrange chunk.c,iopipe.c and overhead.c files in project setting. 2. In order not to affect other platform(linux also defines H5_HAVE_SYS_TIMEB_H). in windows version h5pubconf.h change H5_HAVE_SYS_TIMEB_H into H5_HAVE_SYS_TIMEB. Now H5_HAVE_SYS_TIMEB is only used by windows platform, iopipe test runs okay. 3. change intn into int. 4. undefine H5_inline on windows version of h5pubconf.h Platforms tested: windows 2000(NT5.0) and windows 98.
* [svn-r4461] Bill Wendling2001-09-182-293/+291
| | | | | | | | | | | Purpose: Oops Description: Left a debug print in... Solution: Removed Platforms tested: Linux
* [svn-r4460] Bill Wendling2001-09-182-345/+368
| | | | | | | | | Purpose: feature update Description: Changed the way the summary was printed (the order, mostly). Platforms tested: Linux
* [svn-r4456] Bill Wendling2001-09-181-54/+53
| | | | | | | | | | | | | Purpose: Bug Fix Description: Some so-called "operating systems" (*cough*Windows*cough*) can't handle large string sizes. Solution: Replace the Usage string with individual strings which all call fprintf() themselves. Platforms tested: Linux
* [svn-r4455] Bill Wendling2001-09-182-9/+9
| | | | | | | | | Purpose: Warning Removal Description: Remove some spurious warnings from the compilation. Platforms tested: Linux
* [svn-r4454] Bill Wendling2001-09-182-200/+100
| | | | | | | | | Purpose: Feature Fix Description: Reworked the output summary to be clearer and better organized. Platforms tested: Linux
* [svn-r4450] Updated.Albert Cheng2001-09-181-0/+1
|
* [svn-r4449] Purpose:Albert Cheng2001-09-182-3/+95
| | | | | | | | | Feature Description: Added an example program showing how to use different virtual file drivers. First example is to show the Split File driver. Platforms tested: eirene.
* [svn-r4448] Bill Wendling2001-09-172-480/+802
| | | | | | | | | | Purpose: New Feature Description: Added final output for the configure script which shows a summary of options people chose while configuring. Platforms tested: Linux
* [svn-r4446] Description:Albert Cheng2001-09-171-3/+0
| | | | | | | The caution statement in H5Pset_fapl_split was no longer valid. Removed it. Platforms tested: IE 5.
* [svn-r4445] Purpose:Albert Cheng2001-09-171-0/+29
| | | | | | | | | Feature Description: Updated with the added feature of H5Pset_fapl_split. Added two examples too. Platforms tested: IE 5 plus eyeball.
* [svn-r4444] Purpose:Albert Cheng2001-09-171-2/+25
| | | | | | | | | | | | | | | | | Feature Description: The H5Pset_fapl_split() used to assume both meta and raw files have the same prefix name. This prohibited the option to specify the two files reside on different file systems. E.g., having meta-file as /user/home/data1.meta and raw-file as /pfs/data1.raw. Solution: Added feature that if the raw or meta extension string contains a "%s", it will be substituted by the filename given for H5Fopen or H5Fcreate. This is same as the multi-file syntax. If no %s is found, one is inserted at the beginning. This is the previous behavior. Platforms tested: Modi4 (parallel, serial) and eirene (parallel).
* [svn-r4443] Purpose:Albert Cheng2001-09-171-1/+1
| | | | | | | | | Bug fix Description: Added the condition that Parallel programs are dependent on the hdf5 library too. Platforms tested: eirene (parallel), modi4(serial and parallel).
* [svn-r4439] Bill Wendling2001-09-131-0/+3
| | | | | | | Purpose: Feature Add Description: Added description of the H5CC tool.
* [svn-r4438] Bill Wendling2001-09-131-5/+95
| | | | | | | | | Purpose: Feature Add Description: Added description of the H5CC script. Platforms tested: Mozilla
* [svn-r4437] Purpose:Quincey Koziol2001-09-123-19/+268
| | | | | | | | | Adding Feature Description: Added new H5Pcopy_prop function to copy a property (value) from one property list or class to another. Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4434] Purpose:Albert Cheng2001-09-113-5/+18
| | | | | | | | | | | | New feature. Description: Test programs were assumed to be serial programs only. There was no provision to test parallel programs automatically. Solution: Added $(TEST_PARA_PROGS) to hold parallel test programs and added appropriate action entry to test them if defined. Platforms tested: Eirene (parallel).
* [svn-r4433] Purpose:Albert Cheng2001-09-112-2/+2
| | | | | | | | | Bug fix. Description: The default file name used is /foo/test.out that usually is not legal. Changed it to /tmp/test.out. Platforms tested: eirene (parallel).
* [svn-r4432] Purpose:Albert Cheng2001-09-101-1/+1
| | | | | | | | | | | Bug fix. Description: Did not update the expected strings for result of grand total test time. Causing a false report of test failed to complete. Solution: Update the strings. Platforms tested: Eirene and modi4.