summaryrefslogtreecommitdiffstats
path: root/vms
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r20476] Removed all references to memory.hDana Robinson2011-04-111-3/+0
|
* [svn-r20405] Description:Quincey Koziol2011-04-041-3/+3
| | | | Bump patch release number, after giving out private snapshots.
* [svn-r20315] brought revisions 19868:20300 from the 1.8.6_vms branch to the ↵Raymond Lu2011-03-247-10/+31
| | | | trunk for VMS work
* [svn-r19860] I added accum.c, filter_fail.c, links_env.c, space_overflow.c, ↵Raymond Lu2010-11-292-3/+75
| | | | | | testmeta.c to the test list. Not tested yet.
* [svn-r19857] I added H5Ochunk.c and the command to compile H5make_libsettings.cRaymond Lu2010-11-291-2/+9
| | | | Not tested yet.
* [svn-r19740] Snapshot version 1.9 release 79HDF Tester2010-11-071-3/+3
|
* [svn-r19701] Snapshot version 1.9 release 78HDF Tester2010-10-311-3/+3
|
* [svn-r19666] Snapshot version 1.9 release 77HDF Tester2010-10-241-3/+3
|
* [svn-r19569] Snapshot version 1.9 release 76HDF Tester2010-10-101-3/+3
|
* [svn-r19512] Snapshot version 1.9 release 75HDF Tester2010-10-051-3/+3
|
* [svn-r19142] I added H5Itest.c.Raymond Lu2010-07-281-1/+1
| | | | Not tested yet.
* [svn-r19086] Snapshot version 1.9 release 74HDF Tester2010-07-181-3/+3
|
* [svn-r19064] Snapshot version 1.9 release 73HDF Tester2010-07-111-3/+3
|
* [svn-r19047] Snapshot version 1.9 release 72HDF Tester2010-07-041-3/+3
|
* [svn-r19031] Snapshot version 1.9 release 71HDF Tester2010-06-281-3/+3
|
* [svn-r19022] Snapshot version 1.9 release 70HDF Tester2010-06-201-3/+3
|
* [svn-r18823] Snapshot version 1.9 release 69HDF Tester2010-05-161-3/+3
|
* [svn-r18684] Snapshot version 1.9 release 68HDF Tester2010-05-021-3/+3
|
* [svn-r18589] Snapshot version 1.9 release 67HDF Tester2010-04-181-3/+3
|
* [svn-r18563] I put a header in the output printout. No test is needed.Raymond Lu2010-04-151-0/+6
|
* [svn-r18560] I added header for output print out. No test is needed.Raymond Lu2010-04-151-0/+7
|
* [svn-r18559] I took out the dsets test because it's part of testhdf5 now.Raymond Lu2010-04-151-1/+0
|
* [svn-r18545] Snapshot version 1.9 release 66HDF Tester2010-04-111-3/+3
|
* [svn-r18508] Snapshot version 1.9 release 65HDF Tester2010-04-041-3/+3
|
* [svn-r18465] Snapshot version 1.9 release 64HDF Tester2010-03-281-3/+3
|
* [svn-r18432] Snapshot version 1.9 release 63HDF Tester2010-03-211-3/+3
|
* [svn-r18406] Snapshot version 1.9 release 62HDF Tester2010-03-141-3/+3
|
* [svn-r18367] The OpenVMS linking probably doesn't like too many object ↵Raymond Lu2010-03-041-1/+2
| | | | | | | | | files. I just broke the link command into two commands to make it happy. Tested on OpenVMS.
* [svn-r18366] Binh-Minh integrated dsets.cpp into testhdf5.cpp. I changed ↵Raymond Lu2010-03-041-9/+2
| | | | | | | | the make file accordingly. I'll wait for her to check into the 1.8 branch to make the same change in 1.8. Tested on OpenVMS.
* [svn-r18350] Snapshot version 1.9 release 61HDF Tester2010-02-281-3/+3
|
* [svn-r18328] I commented out the macro H5_HAVE_SYMLINK because I ran the ↵Raymond Lu2010-02-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | following C test under hdf5/test directory. OpenVMS couldn't open a file through symbolic link. This macro is mainly used in test/links.c for the function call external_symlink and in src/H5F.c. Tested the same change for 1.8 on OpenVMS. ------------------------------------------------------------------------ #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <errno.h> int main(void) { int file1, file2; /* Create a symbolic link to the file 21b.c */ if(symlink("[LU.hdf5_1_8_2_5.test.tmp2]21b.c", "[LU.hdf5_1_8_2_5.test.tmp]sym1") < 0) printf("symlink failed\n"); /* Create the file 21b.c */ if((file1 = open("[LU.hdf5_1_8_2_5.test.tmp2]21b.c", O_CREAT | O_TRUNC | O_RDWR)) < 0) printf("1st open failed\n"); if(close(file1) < 0) printf("close failed\n"); /* Open the 21b.c through the symbolic link */ if((file2 = open("[LU.hdf5_1_8_2_5.test.tmp]sym1", O_RDWR)) < 0) { int errsv = errno; printf("2nd open failed, errno=%d\n", errsv); } if(close(file2) < 0) printf("close failed\n"); return 0; }
* [svn-r18217] Snapshot version 1.9 release 60HDF Tester2010-02-071-3/+3
|
* [svn-r18210] Updates - added H5B2hdr.c, H5Fdeprec.c, and H5Ofsinfo.c to the ↵Raymond Lu2010-02-031-6/+6
| | | | | | list. Not tested yet.
* [svn-r18209] Updates. Not tested yet.Raymond Lu2010-02-032-3/+23
|
* [svn-r18199] Snapshot version 1.9 release 59HDF Tester2010-01-311-3/+3
|
* [svn-r18197] Description:Quincey Koziol2010-01-301-1/+1
| | | | | | | | | Trim trailing whitespace from source code files with this command: find . \( -name "*.[ch]" -or -name "*.cpp" -or -name "*.f90" \) -print |xargs -n 1 sed -i "" 's/[[:blank:]]*$//' Tested on: None - eyeballed only
* [svn-r18120] Snapshot version 1.9 release 58HDF Tester2010-01-171-3/+3
|
* [svn-r18100] SnapshotHDF Tester2010-01-101-3/+3
|
* [svn-r18059] SnapshotHDF Tester2010-01-031-3/+3
|
* [svn-r18047] SnapshotHDF Tester2009-12-201-3/+3
|
* [svn-r18022] I added tlinks to testhdf5.Raymond Lu2009-12-161-1/+2
| | | | Tested v1.8.4 on OpenVMS.
* [svn-r18012] SnapshotHDF Tester2009-12-131-3/+3
|
* [svn-r17973] SnapshotHDF Tester2009-12-071-3/+3
|
* [svn-r17924] Description:Quincey Koziol2009-11-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add detection for POSIX lstat() routine to configure script (mostly for non-UNIX/Linux machines) and add macro wrapper for it. Alphabetatize the system/library calls we test for, to make them easier to read. Removed the sigaction() detection & macro wrappers, since it's not used by the distribution currently. Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.6.2 (amazon) in debug mode Mac OS X/32 10.6.2 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
* [svn-r17902] SnapshotHDF Tester2009-11-171-3/+3
|
* [svn-r17742] Snapshot version 1.9 release 50HDF Tester2009-10-251-3/+3
|
* [svn-r17670] Snapshot version 1.9 release 49Larry Knox2009-10-181-3/+3
|
* [svn-r17628] Snapshot version 1.9 release 48Larry Knox2009-10-111-3/+3
|
* [svn-r17589] Snapshot version 1.9 release 47Larry Knox2009-10-041-3/+3
|
* [svn-r17538] Snapshot version 1.9 release 46Larry Knox2009-09-271-3/+3
|