summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-10-26 14:49:52 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-10-26 14:49:52 (GMT)
commitdb9525c2a3ee70379032bae71f26866451df7e58 (patch)
tree81d4f205bbe5c1b201d4be648d04d420dc297cf8 /test/Makefile.in
parent7f020a4f3ce07a105881240d1cabd3a16bd518a0 (diff)
downloadhdf5-db9525c2a3ee70379032bae71f26866451df7e58.zip
hdf5-db9525c2a3ee70379032bae71f26866451df7e58.tar.gz
hdf5-db9525c2a3ee70379032bae71f26866451df7e58.tar.bz2
[svn-r789] Changes since 19981023
---------------------- ./MANIFEST ./test/Makefile.in ./test/flush1.c [NEW] ./test/flush2.c [NEW] Test to see if calling H5Fflush() results in a consistent file. ./src/H5.c ./src/H5A.c ./src/H5D.c ./src/H5Fistore.c ./src/H5I.c ./src/H5S.c ./src/H5Shyper.c ./src/H5Sselect.c ./src/H5TB.c Changed comparisons against SUCCEED and FAIL to >=0 and <0 in about 15 places. ./src/H5.c ./src/H5V.c ./src/H5detect.c ./src/H5private.h ./src/H5public.h ./test/big.c ./test/chunk.c ./test/cmpd_dset.c ./test/dsets.c ./test/dtypes.c ./test/external.c ./test/fillval.c ./test/iopipe.c ./test/links.c ./test/mount.c ./test/mtime.c ./test/ragged.c ./test/shtype.c ./test/unlink.c Removed ^M from the end of lines inserted on broken OS's ;-) ./src/H5private.h Changed c++ comments to c comments. ./src/H5R.c Added tracing macros.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in19
1 files changed, 13 insertions, 6 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 3b43e76..98f4af0 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 mount
+ external shtype links unlink big mtime fillval mount flush1 flush2
TIMINGS=iopipe chunk ragged overhead
# Temporary files
@@ -25,17 +25,18 @@ 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 mount_[0-9].h5 trefer.h5
+ fillval_[0-9].h5 mount_[0-9].h5 trefer.h5 flush.h5
CLEAN=$(TIMINGS)
# Source and object files for programs... The TEST_SRC list contains all the
# source files and is used for things like dependencies, archiving, etc. The
# other source lists are for the individual tests, the files of which may
# overlap with other tests.
-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 mount.c
+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 \
+ mount.c flush1.c flush2.c
TEST_OBJ=$(TEST_SRC:.c=.o)
# Private header files (not to be installed)...
@@ -119,4 +120,10 @@ fillval: fillval.o ../src/libhdf5.a
mount: mount.o ../src/libhdf5.a
$(CC) $(CFLAGS) -o $@ mount.o ../src/libhdf5.a $(LIBS)
+flush1: flush1.o ../src/libhdf5.a
+ $(CC) $(CFLAGS) -o $@ flush1.o ../src/libhdf5.a $(LIBS)
+
+flush2: flush2.o ../src/libhdf5.a
+ $(CC) $(CFLAGS) -o $@ flush2.o ../src/libhdf5.a $(LIBS)
+
@CONCLUDE@