diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-10-14 19:35:08 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-10-14 19:35:08 (GMT) |
commit | cfb2a264f1a441c4267c9d6095a4f11744a602f2 (patch) | |
tree | 06613f81286b01a4d27ea420d432f6c5400b6e08 /test/Makefile.in | |
parent | 6f9a11d046688e5b178fe96e70ea9b1569fc3856 (diff) | |
download | hdf5-cfb2a264f1a441c4267c9d6095a4f11744a602f2.zip hdf5-cfb2a264f1a441c4267c9d6095a4f11744a602f2.tar.gz hdf5-cfb2a264f1a441c4267c9d6095a4f11744a602f2.tar.bz2 |
[svn-r761] Changes since 19981013
----------------------
./src/H5.c
Fixed a signed vs. unsigned comparison.
./src/H5D.c
Setting a fill value of all zeros will cause the fill value to
be written to the dataset instead of relying on the low-level
file driver initializing unwritten areas with zero.
./src/H5D.c
./src/H5F.c
./src/H5Fprivate.h
./src/H5G.c
./src/H5Gpkg.h
./src/H5Gprivate.h
./src/H5O.c
./src/H5T.c
More file mounting stuff.
./src/H5I.c
Fixed a bug where trying to close an invalid object id caused
a core dump. For instance, H5Gclose(-1).
./MANIFEST
./test/Makefile.in
./test/mount.c [NEW]
Mounting tests.
./src/H5R.c
Fixed a couple (herr_t)NULL casts.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index a51f899..3b43e76 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -12,7 +12,7 @@ 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. TESTS=testhdf5 gheap hyperslab istore bittests dtypes dsets cmpd_dset extend \ - external shtype links unlink big mtime fillval + external shtype links unlink big mtime fillval mount TIMINGS=iopipe chunk ragged overhead # Temporary files @@ -25,7 +25,7 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ shtype2a.h5 shtype2b.h5 shtype3.h5 links.h5 chunk.h5 big.data \ big[0-9][0-9][0-9][0-9][0-9].h5 dtypes1.h5 dtypes2.h5 tattr.h5 \ tselect.h5 mtime.h5 ragged.h5 grptime.h5 unlink.h5 overhead.h5 \ - fillval_[0-9].h5 trefer.h5 + fillval_[0-9].h5 mount_[0-9].h5 trefer.h5 CLEAN=$(TIMINGS) # Source and object files for programs... The TEST_SRC list contains all the @@ -35,7 +35,7 @@ CLEAN=$(TIMINGS) TEST_SRC=testhdf5.c tattr.c tfile.c theap.c tmeta.c tohdr.c trefer.c tselect.c \ tstab.c th5s.c dtypes.c hyperslab.c istore.c dsets.c cmpd_dset.c extend.c \ external.c iopipe.c gheap.c shtype.c big.c links.c chunk.c bittests.c \ - mtime.c ragged.c unlink.c overhead.c fillval.c + mtime.c ragged.c unlink.c overhead.c fillval.c mount.c TEST_OBJ=$(TEST_SRC:.c=.o) # Private header files (not to be installed)... @@ -116,4 +116,7 @@ overhead: overhead.o ../src/libhdf5.a fillval: fillval.o ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ fillval.o ../src/libhdf5.a $(LIBS) +mount: mount.o ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ mount.o ../src/libhdf5.a $(LIBS) + @CONCLUDE@ |