summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r24257] Snapshot version 1.8 release 12 (snap19)HDF Tester2013-10-067-23/+23
|
* [svn-r24248] Updated version numbers and notes about CTest ScriptingAllen Byrne2013-10-022-35/+53
|
* [svn-r24245] Update Unix compiler versions.Larry Knox2013-10-011-27/+32
|
* [svn-r24244] Issue 1264: CYGWIN had long double rounding problem from ↵Raymond Lu2013-10-011-6/+0
| | | | | | unsigned long long. I took out the issue from the Known Problems section. No test is needed.
* [svn-r24243] Update list of generated files for clear-objectsAllen Byrne2013-10-011-6/+8
|
* [svn-r24242] Update WDTP test machinesAllen Byrne2013-10-011-13/+10
|
* [svn-r24237] Description:Binh-Minh Ribler2013-10-011-5/+11
| | | | Added more info to new C++ feature section.
* [svn-r24236] Description:Binh-Minh Ribler2013-10-0112-16/+22
| | | | | | | | | | | | - Appended h5tutr_ to names of data files to avoid name clashing with existing examples. - Added example dependencies to Makefile.* (pointed out by Allen) Platforms tested: SunOS 5.11 (emu) with gmake Linux/ppc64 (ostrich) Linux/32 2.6 (jam) Linux/64 2.6 (koala)/PGI compilers
* [svn-r24233] Description:Binh-Minh Ribler2013-09-301-1/+1
| | | | | | Replaced an uint with unsigned to please Windows. Platforms tested: Linux/32 2.6 (jam) - very minor
* [svn-r24232] Description:Binh-Minh Ribler2013-09-303-1/+60
| | | | | - Merged Allen's CMake updates for the C++ tutorial examples from the trunk - Updated RELEASE.txt
* [svn-r24231] Issue 1264: CYGWIN had long double rounding problem from ↵Raymond Lu2013-09-306-44/+4
| | | | | | | | unsigned long long. Allen confirmed the problem is gone. So I took out the macro CYGWIN_ULLONG_TO_LDOUBLE_ROUND_PROBLEM. It skipped the test related to this issue. Tested with h5committest.
* [svn-r24230] I updated the path for ZLIB library.Raymond Lu2013-09-301-1/+1
| | | | Not tested yet.
* [svn-r24229] Purpose: Fix bug HDFFV-7520Binh-Minh Ribler2013-09-302-4/+105
| | | | | | | | | | Description: Added wrappers for H5Aexists. (merged from trunk) Platforms Tested: Linux/32 2.6 (jam) Linux/64 2.6 (koala) Linux/ppc64 (ostrich)
* [svn-r24228] HDFFV-8529: Space separate define stringsAllen Byrne2013-09-304-9/+9
| | | | Tested: local linux
* [svn-r24223] Description:Binh-Minh Ribler2013-09-301-0/+2
| | | | | | Added ${HDF5_CPP_SRC_SOURCE_DIR}/H5Location.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5Location.h
* [svn-r24222] Updated with HDFFV-8271 fix.Albert Cheng2013-09-301-0/+2
|
* [svn-r24220] Bug ID: HDFFV-8512Albert Cheng2013-09-301-6/+3
| | | | | | | | | Mailing lists instructions are incorrect. Fix by removing hdf5dev which has long retired (2009). Subscription requests should be sent to new address due to server change. Tested: tried to subscribe myself and it worked.
* [svn-r24219] Snapshot version 1.8 release 12 (snap18)HDF Tester2013-09-296-20/+20
|
* [svn-r24217] Description:Binh-Minh Ribler2013-09-291-0/+2
| | | | | | | Added ./c++/src/H5Location.cpp ./c++/src/H5Location.h Verified with bin/chkmanifest.
* [svn-r24216] Purpose: Merged changes from trunkBinh-Minh Ribler2013-09-2951-1610/+2100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description from trunk, r22836 In this bug, H5File doesn't have the ability to create attribute. The following changes will provide that functionality and several others that were also missing: - Added an abstract class H5Location in between IdComponent and H5Object. - New class structure of IdComponent, H5Location, H5Object, H5File IdComponent | H5Location / \ H5Object H5File - Wrappers in H5Object were moved to H5Location because the related C functions take either file, group, dataset, or named datatype ID. - Added wrapper for H5Rget_obj_type2 - Added tests for file attributes and H5Rget_obj_type2 wrapper Description from trunk, r22845 Fixed miscellaneous inconsistencies and typos, which also took care of the failure in Packet Table test on daily test today. Description from trunk, r24143 Fixed comments, documentation, and mis-matched DOXYGEN_SHOULD_SKIP_THIS pairs. Description from trunk, r24188 - The failure in daily test was caused by missing initialization of member "id" in a few constructors. This is now fixed. - Added two overloaded H5Location::setComment - Improved some error reporting in H5Location - Improved error reporting in tests Description from trunk, r24189 Changed header guards from single underscore to double underscore. Platforms tested: SunOS 5.11 (emu) Linux/32 2.6 (jam) Linux/64 2.6 (koala)/PGI compilers
* [svn-r24215] Bug fix: HDFFV-8271 Big.c error in address generated by random ↵Albert Cheng2013-09-281-2/+7
| | | | | | | | | | | | | | | | | | | | number. Description: There is a bug in the current big.c tests. In a nut-shell, the writing part randomly picks 50 locations and write 4KB from that location. Random location range is from byte 0 to end of dataset. There is the problem--if the random location is greater than (end of dataset - 4KB), then error. Solution: Adjust the random number to be at least 4KB less than the end of the dataset. That allows it write 4KB more from the generated starting position. Also put in a proper error message if unexpected switch values happened. Tested: h5comittest plus jam serial build and test.
* [svn-r24213] Description:Binh-Minh Ribler2013-09-281-0/+9
| | | | | | | | | | | | | | Added ./c++/examples/h5tutr_cmprss.cpp ./c++/examples/h5tutr_crtatt.cpp ./c++/examples/h5tutr_crtdat.cpp ./c++/examples/h5tutr_crtgrpar.cpp ./c++/examples/h5tutr_crtgrp.cpp ./c++/examples/h5tutr_crtgrpd.cpp ./c++/examples/h5tutr_extend.cpp ./c++/examples/h5tutr_rdwt.cpp ./c++/examples/h5tutr_subset.cpp Verified with bin/chkmanifest
* [svn-r24212] Purpose: Added tutorial examplesBinh-Minh Ribler2013-09-2812-4/+1148
| | | | | | | | | | | | | | | | Description: Merged changes from the trunk. + Revisions 24174: - Added tutorial examples that Barbara made following the C tutorial examples. They will be configured for daily test. + Revision 24195 - Improved format/comments in tutorial examples - Added them to Makefile.* and run-c++-ex.sh.in Platforms tested: SunOS 5.11 (emu) Linux/32 2.6 (jam) Linux/64 2.6 (koala)/PGI compilers Tested the examples by running the script run-c++-ex.sh
* [svn-r24209] Port r24171 from trunk to 1.8 branch.Neil Fortner2013-09-276-128/+128
| | | | | | | | | | | | | | | | | | | Tested: jam, koala, ostrich, platypus (h5committest) Log from r24171: Purpose: Fix problem with gcc 4.8 Description: With optimization enabled, gcc 4.8 inserts garbage into the padding bytes of floating point types when assigning from a literal constant. This caused problems when H5detect.c scanned the bits in floating point types to determine their properties. Modified H5detect.c to scan for padding before further analyzing the type, and to ignore all information in the padding areas. Also removed code that temporarily disabled optimization. Tested: jam, koala, ostrich, platypus (h5committest)
* [svn-r24206] Fix warning message from missing if in configureAllen Byrne2013-09-272-40/+46
|
* [svn-r24205] Merge HDFFV-8513/8522 from trunk (via cmake branch), h5repack ↵Allen Byrne2013-09-2645-4522/+5632
| | | | | | | | UD plugins. Also warning session fixes. Tested: CMake local linux
* [svn-r24204] Port r24140 from trunk to 1.8 branch.Neil Fortner2013-09-263-36/+41
| | | | | | | | | | | | | | | | | | | | Tested: jam, koala, ostrich, platypus (h5committest) Log from r24140: Purpose: Remove problematic abandonment of error stack Description: H5Fis_hdf5 uses H5F_locate_signature to check if the file is hdf5. If it does not locate the signature, H5F_locate_signature would issue an error and return HADDR_UNDEF. H5Fis_hdf5 does not consider it an error if the signature is not found, so it does not issue an error or clear the stack. The filled stack could then cause issues later on. Changed H5F_locate_signature to return herr_t, not issue an error if the signature is not found, and added a parameter for a pointer to the signature address that the function fills in. Tested: jam, koala, ostrich (h5committest)
* [svn-r24203] Port r24139 from trunk to 1.8 branch.Neil Fortner2013-09-261-42/+74
| | | | | | | | | Tested: jam, koala, ostrich, platypus (h5committest) Log from r24139: Remove "will never be exectued" warnings in H5detect.c Tested: jam, koala, ostrich (h5committest)
* [svn-r24201] Merged changes from trunk revisions 23431, 23527 and 24077.Larry Knox2013-09-253-31/+74
| | | | | | | | | | Switched default to link to shared lib files when HDF5 is configure with --disable-static. This addressed HDFFV-8141, h5cc failed because it defaulted to link to lib*.a files which aren't built with --disable-static. -help message also updated. Tested in trunk. Merged code tested with h5committest.
* [svn-r24198] Change Internal CDash site.Allen Byrne2013-09-251-2/+2
|
* [svn-r24187] Snapshot version 1.8 release 12 (snap17)HDF Tester2013-09-226-20/+20
|
* [svn-r24180] HDFFV-8321:Add note about changing FFLAGS to FCFLAGS in configure.Allen Byrne2013-09-203-14/+15
| | | | Merged INSTALL and h5fc.in from trunk.
* [svn-r24169] I updated these files for the support information of OpenVMS.Raymond Lu2013-09-192-6/+25
| | | | No test is needed.
* [svn-r24165] Correct Info.plist settingsAllen Byrne2013-09-191-31/+26
|
* [svn-r24164] Add documentation on usage.Allen Byrne2013-09-193-2/+23
|
* [svn-r24158] Add back STGZ packaging - .sh compressed packageAllen Byrne2013-09-181-7/+11
| | | | Correct MAC Info.plist vars
* [svn-r24156] Port r23987 from trunk to 1.8 branch.Neil Fortner2013-09-1810-181/+177
| | | | | | | | | | | | | | | | Tested: jam, koala, ostrich, platypus (h5committest) Log from r23987: Merge r23939 from reduce_warning branch to trunk Tested: jam, koala, ostrich (h5committest) Log from r23939: Fix unused variables warnings in trunk Rename static functions in H5Adense.c, H5B2cache.c, H5Bcache.c Switch these functions to use FUNC_ENTER_STATIC* macros Tested: koala
* [svn-r24155] There are 4 cases need new function to handle them. I change ↵Raymond Lu2013-09-181-4/+5
| | | | | | | | the script to run them temporarily with TOOLTEST to check the metadata part and left out the data part. Tested on VMS.
* [svn-r24150] Somehow, the C++ compiler doesn't like the list of source ↵Raymond Lu2013-09-171-1/+11
| | | | | | files. I seperated them. Tested on OpenVMS.
* [svn-r24149] I updated these files and tested them on OpenVMS.Raymond Lu2013-09-172-39/+51
|
* [svn-r24130] Change option name for WDTPAllen Byrne2013-09-122-7/+7
|
* [svn-r24121] OpenVMS converted the value of zero in char or short to ↵Raymond Lu2013-09-101-0/+23
| | | | | | | | negative zero in long double. I made it warning instead of failure. Tested on jam and Boeing OpenVMS - simple change.
* [svn-r24117] Description:Quincey Koziol2013-09-093-26/+5
| | | | | | | | Revert accidental checkin of a patch that disables file truncation for parallel I/O. Tested on: MacOSX/64 10.8.4 (amazon)
* [svn-r24112] Description:Quincey Koziol2013-09-0618-138/+246
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bring r24101 & 24111 from trunk to 1.8 branch: r24101: ======= Description: Clean up warnings, enable new compiler warning flag(s) and bring back changes from Coverity branch: r20813: Remove the dead code as listed for coverity bug #1722. h5committested. r20814: Issue 69: Check return value and throw error if negative return. Also free datatype id on error r20815: Use HDstrncpy. --gh r20816: Replaced one last HDstrcat call with HDstrncat to resolve coverity issue 832. r20817: Use HDstrncpy and HDstrncat. --gh r20818: Purpose: Fix valgrind issues with h5jam Description: Modified h5jam to free strings strdup'd in parse_command_line before exit. Note that they may still not be freed in case of error, due to the widespread use of exit(). r20819: Issue 80: change loop to use int as loop index. r20820: Maintenance: Fixed the bug found by coverity CID 788 There were two problems with this function: 1) it tried to unnecessary free NULL pointer 2) it tried to allocate c_name buffer that is done by H5Pget_class_name r24111: ======= Description: Restrict GCC diagnostic pragmas to only gcc 4.6+ Tested on: Mac OSX 10.8.4 (amazon) w/gcc 4.8.1, C++ & FORTRAN (too minor to require h5committest)
* [svn-r24108] Remove file from the future.Allen Byrne2013-09-061-158/+0
|
* [svn-r24106] Add help text tests for h5dump and h5repack to the linux ↵Allen Byrne2013-09-0613-126/+1099
| | | | | | scripts. HDFFV-8498 merge from trunk. Tested: local linux - cmake and autotools
* [svn-r24093] Snapshot version 1.8 release 12 (snap16)HDF Tester2013-09-016-21/+21
|
* [svn-r24084] Correct merge mistakeAllen Byrne2013-08-291-1/+0
|
* [svn-r24082] I added a new file hdf5/vms/tools/h5diff/remove_exit.sh but ↵Raymond Lu2013-08-281-0/+1
| | | | forgot to update MANIFEST.
* [svn-r24081] This script removes the "EXIT CODE" line in the end of all ↵Raymond Lu2013-08-281-0/+11
| | | | | | | | standard output files. OpenVMS doesn't output the same value as Unix. So we remove the line first on Unix before running the tests. See Jira issue VMS-4. Tested on jam.