summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-07-30 20:03:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-07-30 20:03:25 (GMT)
commitbbae8bfdcd4b12bd007cd8a731307bad50384b9a (patch)
tree6cce608e49d5b93a2ba0f477b175f58f6219ea64 /test/Makefile.in
parenta836c9bf45515b9bb86058b15e840ab7b86565ba (diff)
downloadhdf5-bbae8bfdcd4b12bd007cd8a731307bad50384b9a.zip
hdf5-bbae8bfdcd4b12bd007cd8a731307bad50384b9a.tar.gz
hdf5-bbae8bfdcd4b12bd007cd8a731307bad50384b9a.tar.bz2
[svn-r4281] Purpose:
Additional test Description: Added metadata cache abuser code to the 'timings' target in the tests. Platforms Tested: FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in17
1 files changed, 10 insertions, 7 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 4cd2df2..77cd888 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -22,7 +22,7 @@ TEST_PROGS=testhdf5 lheap ohdr stab gheap hyperslab istore bittests dtypes \
flush1 flush2 enum gass_write gass_read gass_append dpss_write \
dpss_read srb_write srb_append srb_read ttsafe stream_test
-TIMINGS=iopipe chunk overhead
+TIMINGS=iopipe chunk overhead testmeta
## The libh5test.a library provides common support code for the tests. We link
## this library statically because some systems can only link executables to
@@ -46,9 +46,9 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \
gheap1.h5 gheap2.h5 gheap3.h5 gheap4.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 unlink.h5 overhead.h5 \
- fillval_[0-9].h5 fillval.raw mount_[0-9].h5 ttime.h5 trefer[12].h5 \
- tvltypes.h5 tvlstr.h5 flush.h5 enum1.h5 titerate.h5 ttsafe.h5 \
- tarray1.h5 tgenprop.h5
+ fillval_[0-9].h5 fillval.raw mount_[0-9].h5 testmeta.h5 \
+ ttime.h5 trefer[12].h5 tvltypes.h5 tvlstr.h5 flush.h5 enum1.h5 \
+ titerate.h5 ttsafe.h5 tarray1.h5 tgenprop.h5
CLEAN=$(TIMINGS)
## Source and object files for programs... The TEST_SRC list contains all the
@@ -57,9 +57,9 @@ CLEAN=$(TIMINGS)
## overlap with other tests.
TEST_SRC=big.c bittests.c chunk.c cmpd_dset.c dsets.c dtypes.c extend.c \
- external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \
- iopipe.c istore.c lheap.c links.c mount.c mtime.c ohdr.c overhead.c \
- stab.c tarray.c tattr.c testhdf5.c tfile.c tgenprop.c th5s.c \
+ external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \
+ iopipe.c istore.c lheap.c links.c mount.c mtime.c ohdr.c overhead.c \
+ stab.c tarray.c tattr.c testhdf5.c testmeta.c tfile.c tgenprop.c th5s.c \
titerate.c tmeta.c trefer.c tselect.c ttime.c ttbbt.c tvltypes.c tvlstr.c \
unlink.c enum.c ttsafe.c ttsafe_dcreate.c ttsafe_error.c ttsafe_cancel.c \
ttsafe_acreate.c gass_write.c gass_read.c gass_append.c dpss_read.c \
@@ -195,5 +195,8 @@ srb_append: srb_append.lo
stream_test: stream_test.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ stream_test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+testmeta: testmeta.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ testmeta.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
@CONCLUDE@