summaryrefslogtreecommitdiffstats
path: root/vms
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r19141] I added H5Itest.c. Raymond Lu2010-07-281-1/+1
| | | | Not tested yet.
* [svn-r19091] Snapshot version 1.8 release 5 (snap4)HDF Tester2010-07-191-3/+3
|
* [svn-r19065] Snapshot version 1.8 release 5 (snap3)HDF Tester2010-07-121-3/+3
|
* [svn-r19048] Snapshot version 1.8 release 5 (snap2)HDF Tester2010-07-051-3/+3
|
* [svn-r19033] Snapshot version 1.8 release 5 (snap1)HDF Tester2010-06-281-3/+3
|
* [svn-r19023] Snapshot version 1.8 release 5 (snap0)HDF Tester2010-06-211-3/+3
|
* [svn-r18848] Corrected the -M and some dataset names with uppercase letters ↵Raymond Lu2010-05-181-13/+13
| | | | | | | | for packed bits tests. On VMS, the uppercase letters have to be quoted on command line. Tested on OpenVMS.
* [svn-r18845] Albert added more tests for packed bits. I made the change ↵Raymond Lu2010-05-181-2/+30
| | | | | | accordingly. Not tested yet.
* [svn-r18841] Changed version number to 1.8.4-snap0Mike McGreevy2010-05-181-3/+3
| | | | Updated RELEASE.txt file accordingly.
* [svn-r18825] Snapshot version 1.8 release 4 (snap22)HDF Tester2010-05-171-3/+3
|
* [svn-r18776] I corrected a typo. Raymond Lu2010-05-121-1/+1
| | | | No test.
* [svn-r18775] I added 2 tests for packed bits. I didn't use the new macro ↵Raymond Lu2010-05-121-0/+5
| | | | | | | | H5_HAVE_H5DUMP_PACKED_BITS for these tests. Not tested yet.
* [svn-r18774] I added a new macro H5_HAVE_H5DUMP_PACKED_BITS.Raymond Lu2010-05-121-0/+3
| | | | Not tested yet.
* [svn-r18748] Snapshot version 1.8 release 4 (snap21)HDF Tester2010-05-101-3/+3
|
* [svn-r18688] Snapshot version 1.8 release 4 (snap20)HDF Tester2010-05-031-3/+3
|
* [svn-r18679] Albert fixed the bug (#1764) in H5detect.c and added a few new ↵Raymond Lu2010-04-301-0/+9
| | | | | | | | macros in H5config.h.in. I added them - H5_HAVE_SETJMP, H5_HAVE_SIGPROCMASK, and H5_HAVE_SIGSETJMP. Tested on OpenVMS and everything passed.
* [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
|