summaryrefslogtreecommitdiffstats
path: root/vms
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r18591] Snapshot version 1.8 release 4 (snap19)HDF Tester2010-04-191-3/+3
|
* [svn-r18583] I added H5Ochunk.c as a new file. Not tested yet.Raymond Lu2010-04-161-1/+1
|
* [svn-r18562] I put a header in the output printout. No test is needed.Raymond Lu2010-04-151-0/+6
|
* [svn-r18561] I added header for output print out. No test is needed.Raymond Lu2010-04-151-0/+7
|
* [svn-r18558] I took out the dsets test because it's part of testhdf5 now.Raymond Lu2010-04-151-1/+0
|
* [svn-r18553] I updated 2 things: 1. I added H5make_libsettings.c into the ↵Raymond Lu2010-04-144-0/+55
| | | | | | | | | makefile in the src/. It works similar to H5detect.c. 2. I added H5srcdir_str.h under test/ and c++/test/. Not tested yet.
* [svn-r18546] Snapshot version 1.8 release 4 (snap18)HDF Tester2010-04-121-3/+3
|
* [svn-r18467] Snapshot version 1.8 release 4 (snap17)HDF Tester2010-03-291-3/+3
|
* [svn-r18434] Snapshot version 1.8 release 4 (snap16)HDF Tester2010-03-221-3/+3
|
* [svn-r18428] Binh-Minh integrated dsets.cpp into testhdf5.cpp. I changed ↵Raymond Lu2010-03-191-9/+2
| | | | | | the make file accordingly. Not tested yet.
* [svn-r18408] Snapshot version 1.8 release 4 (snap15)HDF Tester2010-03-151-3/+3
|
* [svn-r18368] The OpenVMS link probably doesn't like too many object files. ↵Raymond Lu2010-03-041-1/+3
| | | | | | | | I just broke the link command into 3 commands to make it happy. Tested on OpenVMS.
* [svn-r18351] Snapshot version 1.8 release 4 (snap14)HDF Tester2010-02-281-3/+3
|
* [svn-r18327] 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 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-r18307] Snapshot version 1.8 release 4 (snap13)HDF Tester2010-02-221-3/+3
|
* [svn-r18255] Snapshot version 1.8 release 4 (snap12)HDF Tester2010-02-141-3/+3
|
* [svn-r18234] Snapshot version 1.8 release 4 (snap11)HDF Tester2010-02-121-3/+3
|
* [svn-r18219] Snapshot version 1.8 release 4 (snap10)HDF Tester2010-02-081-3/+3
|
* [svn-r18211] Added H5B2hdr.c to the list.Raymond Lu2010-02-031-1/+1
| | | | Not tested yet.
* [svn-r18204] Updates. Not tested yet.Raymond Lu2010-02-022-2/+14
|
* [svn-r18203] Snapshot version 1.8 release 4 (snap9)HDF Tester2010-02-021-3/+3
|
* [svn-r18201] Snapshot version 1.8 release 4 (snap8)HDF Tester2010-02-011-3/+3
|
* [svn-r18161] Snapshot version 1.8 release 4 (snap7)HDF Tester2010-01-251-3/+3
|
* [svn-r18121] Snapshot version 1.8 release 4 (snap6)HDF Tester2010-01-171-3/+3
|
* [svn-r18101] SnapshotHDF Tester2010-01-101-3/+3
|
* [svn-r18062] SnapshotHDF Tester2010-01-041-3/+3
|
* [svn-r18058] SnapshotHDF Tester2009-12-271-3/+3
|
* [svn-r18049] SnapshotHDF Tester2009-12-211-3/+3
|
* [svn-r18021] I added tlinks to testhdf5.Raymond Lu2009-12-161-1/+2
| | | | Tested v1.8.4 on OpenVMS.
* [svn-r18014] SnapshotHDF Tester2009-12-141-3/+3
|
* [svn-r17975] SnapshotHDF Tester2009-12-071-3/+3
|
* [svn-r17925] Description:Quincey Koziol2009-11-231-3/+3
| | | | | | | | | | | | | | | | | Bring r17924 from trunk to 1.8 branch: 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 (h5committested on trunk)
* [svn-r17709] Maintenance: Changed version number to 1.8.4-snap0Elena Pourmal2009-10-211-3/+3
| | | | Updated RELEASE.txt and HISTORY.txt file accordingly.
* [svn-r17677] Snapshot version 1.8 release 3 (snap13)Larry Knox2009-10-191-3/+3
|
* [svn-r17540] Snapshot version 1.8 release 3 (snap12)Larry Knox2009-09-271-3/+3
|
* [svn-r17501] Snapshot version 1.8 release 3 (snap11)Larry Knox2009-09-201-3/+3
|
* [svn-r17481] Added H5Fsuper_cache.c to the make.com.Raymond Lu2009-09-151-1/+1
| | | | Not tested yet.
* [svn-r17472] Snapshot version 1.8 release 3 (snap10)Larry Knox2009-09-131-3/+3
|
* [svn-r17453] Snapshot version 1.8 release 3 (snap9)Larry Knox2009-09-061-3/+3
|
* [svn-r17437] Snapshot version 1.8 release 3 (snap8)Larry Knox2009-08-301-3/+3
|
* [svn-r17410] Snapshot version 1.8 release 3 (snap7)Larry Knox2009-08-231-3/+3
|
* [svn-r17386] Added some comments.Raymond Lu2009-08-191-0/+6
| | | | No test needed.
* [svn-r17384] Corrected the path.Raymond Lu2009-08-191-2/+3
| | | | Not tested yet.
* [svn-r17368] Snapshot version 1.8 release 3 (snap6)Larry Knox2009-08-161-3/+3
|
* [svn-r17350] I added the simple test for h5jam and the build for h5repart.Raymond Lu2009-08-132-0/+41
| | | | Not tested yet.
* [svn-r17339] Snapshot version 1.8 release 3 (snap5)Larry Knox2009-08-121-3/+3
|
* [svn-r17251] Added H5Dlayout.c to the source and updated the test script ↵Raymond Lu2009-07-282-5/+5
| | | | | | file for h5import. Not tested yet.
* [svn-r17229] Disable a test as C script does.Raymond Lu2009-07-231-2/+2
|
* [svn-r17194] Enable h5copy test.Raymond Lu2009-07-161-6/+6
| | | | Not tested yet.
* [svn-r17185] Fixed a typo.Raymond Lu2009-07-141-1/+1
| | | | Not tested yet.