diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-30 23:32:28 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-30 23:32:28 (GMT) |
commit | 374e5ae39b6f05469c1bcbdcaf0a473f1dde1385 (patch) | |
tree | 3284232ef8b21758da14fe63347b903d3883c3c4 /test/Makefile.in | |
parent | d9329a23aab4d941956ac421b11eb009a2deb32b (diff) | |
download | hdf5-374e5ae39b6f05469c1bcbdcaf0a473f1dde1385.zip hdf5-374e5ae39b6f05469c1bcbdcaf0a473f1dde1385.tar.gz hdf5-374e5ae39b6f05469c1bcbdcaf0a473f1dde1385.tar.bz2 |
[svn-r209] Changes since 19980130
----------------------
./INSTALL
Added instructions for which C flags to set for debugging.
./src/H5C.c
./src/H5Cpublic.h
H5Cset_chunk() takes const pointer.
./src/H5D.c
./src/H5Dprivate.h
./src/H5Dpublic.h
Added H5Dextend() to extend the dimensions of a dataset.
./src/H5Osdspace.c
./src/H5P.c
./src/H5Pprivate.h
./src/H5Ppublic.h
./test/cmpd_dset.c
./test/dsets.c
./test/th5p.c
Added the optional `maxdims' argument to H5Pcreate_simple()
and defined constant H5P_UNLIMITED which can appear in the
maxdims. Added `const' to arguments.
Implemented H5Pcopy()
Removed the unused file argument from H5P_modify.
Added H5P_extend().
Removed the `flags' field from simple data types and we
determine if the `max' or `perm' arrays are valid by looking
at the pointer. Cleaned up the H5O_sdspace_debug output.
./src/H5T.c
Fixed a printf format.
./MANIFEST
./test/Makefile.in
./test/extend.c [NEW]
Added a test for multi-dimensional unlimited dimensions.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index a2259cd..76cc68d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -11,11 +11,11 @@ CPPFLAGS=-I. -I../src @CPPFLAGS@ # These are our main targets. They should be listed in the order to be # executed, generally most specific tests to least specific tests. -PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset +PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset extend TESTS=$(PROGS) # Temporary files -MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 istore.h5 tfile1.h5 tfile2.h5 \ +MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ tfile3.h5 th5p1.h5 theap.h5 tohdr.h5 tstab1.h5 tstab2.h5 # Source and object files for programs... The PROG_SRC list contains all the @@ -23,7 +23,7 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 istore.h5 tfile1.h5 tfile2.h5 \ # other source lists are for the individual tests, the files of which may # overlap with other tests. PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5p.c dtypes.c \ - hyperslab.c istore.c dsets.c cmpd_dset.c + hyperslab.c istore.c dsets.c cmpd_dset.c extend.c PROG_OBJ=$(PROG_SRC:.c=.o) TESTHDF5_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5p.c @@ -44,6 +44,9 @@ ISTORE_OBJ=$(ISTORE_SRC:.c=.o) CMPD_DSET_SRC=cmpd_dset.c CMPD_DSET_OBJ=$(CMPD_DSET_SRC:.c=.o) +EXTEND_SRC=extend.c +EXTEND_OBJ=$(EXTEND_SRC:.c=.o) + # Private header files (not to be installed)... PRIVATE_HDR=testhdf5.h @@ -66,4 +69,7 @@ istore: $(ISTORE_OBJ) ../src/libhdf5.a cmpd_dset: $(CMPD_DSET_OBJ) ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ $(CMPD_DSET_OBJ) ../src/libhdf5.a $(LIBS) +extend: $(EXTEND_OBJ) ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ $(EXTEND_OBJ) ../src/libhdf5.a $(LIBS) + @CONCLUDE@ |