diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-10-05 21:01:10 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-10-05 21:01:10 (GMT) |
commit | 21943f5d35f98b35c3c0182d56f81b4854269dd6 (patch) | |
tree | a5024e9eb5ca6a40f07ae224fcf49d3f4782785c /test/Makefile.in | |
parent | 58ee080e72f4aa1e10bc7c3fcf5f6499aaad18e7 (diff) | |
download | hdf5-21943f5d35f98b35c3c0182d56f81b4854269dd6.zip hdf5-21943f5d35f98b35c3c0182d56f81b4854269dd6.tar.gz hdf5-21943f5d35f98b35c3c0182d56f81b4854269dd6.tar.bz2 |
[svn-r735] Changes since 19981002
----------------------
./src/H5D.c
Fill values are working for contiguous datasets now except
there are two things that need more support from the data
space layer, specifically the ability to form a selection from
the difference of two selections. They are (1) extending an
external contiguous dataset, (2) optimization by delaying the
fill until after the first H5Dwrite().
Renamed H5D_allocate() to H5D_init_storage() since allocation
is only part of the story. Added a data space argument so it
doesn't have to query the space from the object header -- the
space is always available in the caller anyway.
Removed `#ifdef HAVE_PARALLEL' from a few places where it
wasn't necessary. We don't need it around code that doesn't
compile anything from mpi.h or mpio.h.
./src/H5Fistore.c
Uncommented H5F_istore_alloc() for non-parallel and moved the
`#ifdef HAVE_PARALLEL' just around Kim's barrier.
./src/H5Fmpio.c
Wrapped a couple long lines.
Got rid of two signed vs. unsigned comparison warnings.
./MANIFEST
./test/Makefile.in
./test/fillval.c [NEW]
Added tests for fill values. The contiguous dataset extend
test is disabled until H5S_SELECT_DIFF is implemented.
./tools/Makefile.in
Fixed a bug where `make test' didn't build the executables
first. This should cause the snapshots to start up again.
./Makefile.in
Changed to build in `test' directory before `tools'
directory. We want the library tests to pass before we even
start considering the tools. You can still build and/or test
the tools independent of the library tests passing.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index fc671a4..10923c0 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 + external shtype links unlink big mtime fillval TIMINGS=iopipe chunk ragged overhead # Temporary files @@ -24,7 +24,8 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ gheap1.h5 gheap2.h5 gheap3.h5 gheap4.h5 shtype0.h5 shtype1.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 + tselect.h5 mtime.h5 ragged.h5 grptime.h5 unlink.h5 overhead.h5 \ + fillval_[0-9].h5 CLEAN=$(TIMINGS) # Source and object files for programs... The TEST_SRC list contains all the @@ -34,7 +35,7 @@ CLEAN=$(TIMINGS) TEST_SRC=testhdf5.c tattr.c tfile.c theap.c tmeta.c tohdr.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 + mtime.c ragged.c unlink.c overhead.c fillval.c TEST_OBJ=$(TEST_SRC:.c=.o) # Private header files (not to be installed)... @@ -112,4 +113,7 @@ unlink: unlink.o ../src/libhdf5.a overhead: overhead.o ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ overhead.o ../src/libhdf5.a $(LIBS) +fillval: fillval.o ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ fillval.o ../src/libhdf5.a $(LIBS) + @CONCLUDE@ |