summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r11532] Purpose:Albert Cheng2005-10-112-0/+28
| | | | | | | Added copyright notice. Platforms tested: not tested as they are not even in Makefile.
* [svn-r11526] Description:Albert Cheng2005-10-111-127/+278
| | | | | | | | A near total rewrite, added initialization feature, more flexible where the copyright notice is. Platforms tested: Hand tested.
* [svn-r11525] Purpose:Albert Cheng2005-10-112-1/+21
| | | | | | | | | | Feature. Description: Initialization file for chkcopyright. Platforms tested: Hand tested.
* [svn-r11524] Purpose:Albert Cheng2005-10-111-0/+14
| | | | | | | Inserted copyright notice. Platforms tested: Tested in heping only since only a comment block was added.
* [svn-r11519] Purpose:James Laird2005-10-103-2/+217
| | | | | | | | | | | | | | | Bug fix Description: Some platforms complain that tcp.h is present but cannot be compiled. Solution: This is because tcp.h needs in.h to be included. Checked for netinet/in.h and included it when netinet/tcp.h is being checked. Platforms tested: mir, cu11
* [svn-r11517] Purpose: Fixed commentsBinh-Minh Ribler2005-10-101-4/+4
| | | | | | | | | Description: Fixed the description of two parameters that were swapped by mistake. Platforms tested: Linux 2.4 (heping) - very minor
* [svn-r11515] Purpose:Albert Cheng2005-10-101-1/+1
| | | | | | | | | | Fixed copyright notice. Description: A line is missing in the copyright notice. Fixed. Platforms tested: No test since it is only a fix in a comment block.
* [svn-r11514] Purpose:James Laird2005-10-071-2/+16
| | | | | | | | | | | | | | | | | | | Bug fix Description: Fixed config file for apple powerpcs. Should detect xlf more often (though not infallibly). Should disable shared libraries when xlf is being used. Solution: Since neither xlf nor f95 have "version" options (which could be used to identify which compiler is being used), the config file checks if the fortran compiler is named 'xlf' (or /path/xlf). If not, it assumes the compiler must be f95. xlf is still the default if no compiler is named at all. Platforms tested: pommier (change only to mac-specific config file)
* [svn-r11513] Purpose:Fang Guo2005-10-071-4/+4
| | | | | | | | | | | | Maintenance on Windows Description: hl fortran debug dll tests missed and hl fortran release dll tested twice before Add in hl fortran debug dll tests and remove one hl fortran release dll test Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11512] Purpose:Fang Guo2005-10-071-1/+1
| | | | | | | | | | | Maintenance on Windows Description: Enable talign test on Windows. Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11507] Purpose:James Laird2005-10-062-1/+2
| | | | | | | Mentioned support for Cray X1 in 1.7 release notes. Solution: Cray X1 has been working for a while, just never wrote it down before now.
* [svn-r11504] UPdated with the adding of mpich2 informal support.Albert Cheng2005-10-061-0/+1
|
* [svn-r11500] Bug fix.Albert Cheng2005-10-051-1/+6
| | | | | | | | | SETUP Was using "cp" command which means file $2 will inherit the permission setting of file $1. If $1 is read-only, so will $2. That will cause failure when the test attempts to write it later on. Changed to use the "cat" command. Tested in LANL QSC and Flash.
* [svn-r11490] Purpose:Quincey Koziol2005-10-0311-17/+555
| | | | | | | | | | | | | | | Bug fix Description: Fix "double root open" bug and apply same fix to datasets & named datatypes. Also fix bug in symbol table entry lookup code that would "transfer" an object from one file handle to another file handle when the two file handles were opened on the same actual file. Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
* [svn-r11489] Snapshot version 1.7 release 51HDF Admin2005-10-027-17/+17
|
* [svn-r11487] Purpose:Quincey Koziol2005-10-0172-852/+864
| | | | | | | | | | | Code cleanup Description: Tweak copyright on C++ source files to reduce whining by copyright checking script. Platforms tested: FreeBSD 4.11 (sleipnir) w/C++
* [svn-r11486] Purpose:Albert Cheng2005-09-301-1/+1
| | | | | | | | | | | | | Bug fix. Description: mpich2 using f95 did not support function 'unlink'. Removed the unlink call for now. Need a better solution. Platforms tested: heping using mpich and mpich2 versions of mpif90. Misc. update:
* [svn-r11485] Purpose:Quincey Koziol2005-09-302-170/+173
| | | | | | | | | | | | Code cleanup Description: Clean up & optimize (a little) the recent "hyperslab rebuilding" code w/Kent. Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
* [svn-r11483] Purpose:Leon Arber2005-09-291-7/+7
| | | | | | | | | | | | | | | | bug fix. Description: The complex derived datatype test assumed that the fill value would be 0. This is not the case on all systems. Solution: Modified the test to check against a known value in the outbuf array, instead of the fill value. Platforms tested: heping and MCR. Misc. update:
* [svn-r11481] Purpose:Leon Arber2005-09-291-1/+1
| | | | | | | | | | | | | | | bug fix. Description: Fixed typo in a comment. The word "file" was supposed to be "fill." The explanation of how the complex derived datatype test works is much clearer now. Solution: Platforms tested: minor change. Misc. update:
* [svn-r11480] Purpose:Fang Guo2005-09-292-2/+14
| | | | | | | | | | | Maintenance on Windows Description: No alarm function on Windows, opt out Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
* [svn-r11479] Purpose:Fang Guo2005-09-291-5/+0
| | | | | | | | | | | Maintenance on Windows Description: No Alarm function on Windows Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
* [svn-r11478] Purpose:Albert Cheng2005-09-2935-280/+245
| | | | | | | | | | | | | | | | bug fix. Description: When a parallel test script test fails, make would continue because the way it was setup inside a for loop. Fixed it by issuing an exit 1 inside the loop. There was also a typo error in the newer command comparision that it must be $${chkname} in order to be valid. Also, the test script itself was not checked in the newer lists. All fixed. Platforms tested: h5committested and also hand tested in heping pp mode.
* [svn-r11477] Purpose:Albert Cheng2005-09-292-0/+5
| | | | | | | | | | feature. Description: added the recognition of -lmpich as a form of MPI library. Platforms tested: Tested in heping. Real test will be in MCR.
* [svn-r11476] Purpose:Albert Cheng2005-09-292-3/+91
| | | | | | | | | | feature. Description: added the recognition of -lmpich as a form of MPI library. Platforms tested: Tested in heping. Real test will be in MCR.
* [svn-r11475] Purpose:John Mainzer2005-09-281-0/+1
| | | | | | | | | | | | | | | | | | | | | Bug fix Description: In production builds, H5MM_malloc was undefined in H5AC.c Solution: Include H5MMprivate.h in H5AC.c, which defines H5MM_malloc() in both debug and production modes. Platforms tested: h5committested, serial production build on Heping Misc. update:
* [svn-r11471] Purpose:Albert Cheng2005-09-271-17/+17
| | | | | | | | | | | | | | | | | | revision. Description: The copyright notice for Makefile(in) were fixed at the beginning of the files. But they are now generated by automake and autoconf such that Gnu jams its own copyright block at the beginning. Solution: Changed the rule such that the HDF5 copyright notice can be somewhere else in the file as long as they are together as one paragraph. Also added recognition of Makefile.am as a possible MAKEFILE type. Platforms tested: Tested by hand in heping.
* [svn-r11470] Purpose:John Mainzer2005-09-2721-410/+3992
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Repair synchronization bug in the metadata cache in PHDF5 Also repair numerous other bugs that surfaced in testing the bug fix. Description: While operations modifying metadata must be collective, we allow independant reads. This allows metadata caches on different processes to adjust to different sizes, and to place the entries on their dirty lists in different orders. Since only process 0 actually writes metadata to disk (all other processes thought they did, but the writes were discarded on the theory that they had to be collective), this made it possible for another process to modify metadata, flush it, and then read it back in in its original form (pre-modification) form. The possibilities for file corruption should be obvious. Solution: Make the policy that only process 0 can write to file explicit, and visible to the metadata caches. Thus only process 0 may flush dirty entries -- all other caches must retain dirty entries until they are informed by process 0 that the entries are clean. Synchronization is handled by counting the bytes of dirty cache entries created, and then synching up between the caches whenever the sum exceeds an (eventually user specified) limit. Dirty metadata creation is consistent across all processes because all operations modifying metadata must be collective. This change uncovered may bugs which are repaired in this checkin. It also required modification of H5HL and H5O to allocate file space on insertion rather than on flush from cache. Platforms tested: H5committest, heping(parallel & serial) Misc. update:
* [svn-r11467] Purpose:Albert Cheng2005-09-273-2/+6
| | | | | | | Add the detection of the alarm function. Platforms tested: Tested in heping.
* [svn-r11466] Purpose:MuQun Yang2005-09-271-179/+53
| | | | | | | | | | | | | | Code refinement Description: Make the re-build hyperslab selection code shorter to be maintained easily Solution: Platforms tested: Sol 2.9, linux 2.4, Aix 5.1 Misc. update:
* [svn-r11464] Purpose:Albert Cheng2005-09-261-2/+33
| | | | | | | | | | | Feature. Description: Added the copyright checking--most settings are temporary. Need cleanup or fixes when most copyrights notices are completed. Platforms tested: Tested by hand.
* [svn-r11463] Purpose:Quincey Koziol2005-09-231-2/+4
| | | | | | | | | | Code cleanup Description: #ifdef out blksize field in file structure for non-GPFS builds. Platforms tested: None - just eyeballed - very minor.
* [svn-r11462] Purpose:Fang Guo2005-09-231-0/+5
| | | | | | | | | | | Maintenance on Windows Description: Modify Batch file due to the changes of output of H5diff tool Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
* [svn-r11461] Purpose:James Laird2005-09-2221-362/+0
| | | | | | | | | | | | | | | Code cleanup Description: Removed Fortran type sizes from config/* files. Solution: These lines weren't doing anything anymore; they've been replaced by automatic type generation. This is just housekeeping to remove them from the config/* files. Platforms tested: mir, sol, modi4
* [svn-r11460] Purpose:James Laird2005-09-221-12/+13
| | | | | | | Documentation update Description: Updated config/Makefile.am.blank now that I know better.
* [svn-r11459] Purpose:MuQun Yang2005-09-221-2/+3
| | | | | | | | | | | | | | | | | | A bug fix Description: MPI_Status_IGNORE is treated as a NULL pointer for mpich 1.2.4 or similar MPI packages. It caused segmentation fault for MPI derived datatype test. Solution: Define MPI_STATUS status, and pass &status into MPI_File_read and MPI_File_write. Platforms tested: too trivial to test. Misc. update:
* [svn-r11458] Purpose:Albert Cheng2005-09-221-13/+30
| | | | | | | | | | | | | | | | | | Improvement. Description: The test may hang if there are system failures that some processors are not working. Solution: Added the ALARM calls to limit all tests be done with the default alarm time. So, even if a process is hanging, the ALARM signal would terminate the process. Platforms tested: tg-login2 of NCSA. Misc. update:
* [svn-r11457] Purpose:Fang Guo2005-09-211-1814/+1842
| | | | | | | | | | | Maintenance on Windows Description: Update all.sln Solution: Platforms tested: Misc. update:
* [svn-r11456] Purpose:Fang Guo2005-09-211-0/+2
| | | | | | | | | | | Add in two new project file for tool h5stat Description: Solution: Platforms tested: Misc. update:
* [svn-r11455] Purpose:Fang Guo2005-09-211-0/+2
| | | | | | | | | | | Maintenance on Windows Description: Add in two new project files (h5stat.dsp and h5statdll.dsp) Solution: Platforms tested: Visual Studio .Net on Windows XP Misc. update:
* [svn-r11454] Purpose:Fang Guo2005-09-211-0/+2
| | | | | | | | | | | Maintenance on Windows Description: Add in two new project files (h5stat.dsp and h5statdll.dsp) Solution: Platforms tested: Misc. update:
* [svn-r11453] Purpose:Fang Guo2005-09-211-0/+105
| | | | | | | | | | | Maintenance on Windows Description: Add dll project file for tool h5stat Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
* [svn-r11452] Purpose:Fang Guo2005-09-211-0/+106
| | | | | | | | | | | Maintenance on Windows Description: Add the static project file for tool h5stat Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
* [svn-r11451] Purpose:Fang Guo2005-09-211-0/+42
| | | | | | | | | | | Maintenance on Windows Description: Add two new project files for tool h5stat Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
* [svn-r11450] Purpose:Pedro Vicente Nunes2005-09-211-3/+9
| | | | | | | | | | | | | | | | | | bug fix Description: the MPI_File_get_size returns a different value in one of the tests in Windows comment the code and not run the test in windows a ULL suffix on the harcoded return VRY return number is needed on AIX Solution: Platforms tested: Windows AIX Misc. update:
* [svn-r11449] Purpose:James Laird2005-09-212-2/+2
| | | | | | | | | | | | Bug fix Description: Fixed typo in configure.in. Platforms tested: SX6, mir Misc. update:
* [svn-r11448] Purpose:Pedro Vicente Nunes2005-09-215-8/+26
| | | | | | | | | | | | | | | | | | | new features Description: add support for compiling the library and testphdf5 in Windows Solution: Platforms tested: Linux AIX Solaris Windows VC6 Misc. update:
* [svn-r11447] Purpose:MuQun Yang2005-09-201-0/+190
| | | | | | | | | | | | | | | | Hyperslab re-build optimization Description: Previously only singluar selection can be rebuilt from span-tree application. This optimization is supposed to rebuild for other regular selection case(such as count =2, block = 2, stride =3) Solution: Platforms tested: shanti(sol 2.9), heping(Linux 2.4), NCAR SGI(IRIX 6.5) Misc. update:
* [svn-r11446] Purpose:James Laird2005-09-2036-71/+106
| | | | | | | | | | | Bug fix Description: Massaged the newer script and config/conclude.am to make SX6 happy. Platforms tested: SX6, sol, mir
* [svn-r11445] Purpose:Pedro Vicente Nunes2005-09-207-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | h5diff new feature Description: a user asked for the message "Some objects are not comparable" to be more noticeable Solution: -------------------------------- Some objects are not comparable -------------------------------- Platforms tested: linux Misc. update: