summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-11-24 03:15:31 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-11-24 03:15:31 (GMT)
commitee4fcb4da6d18db7465bf44f5b5f5a424d377ed3 (patch)
tree0881a6479be20b38b10284a1e713635250147213
parentbc3e912fae8941b8f499c90ceb8f570e1b6859f6 (diff)
downloadhdf5-ee4fcb4da6d18db7465bf44f5b5f5a424d377ed3.zip
hdf5-ee4fcb4da6d18db7465bf44f5b5f5a424d377ed3.tar.gz
hdf5-ee4fcb4da6d18db7465bf44f5b5f5a424d377ed3.tar.bz2
[svn-r9568] Purpose:
Cleanup & add test Description: Clean up test makefile a bit and add metadata cache test to 1.6 branch. Platforms tested: FreeBSD 4.10 (sleipnir) Too minor to require h5committest
-rw-r--r--test/Makefile.in35
1 files changed, 19 insertions, 16 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index b55cd28..942addd 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -24,11 +24,11 @@ CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/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.
-TEST_PROGS=testhdf5 lheap ohdr stab gheap hyperslab istore bittests dtypes \
- dsets cmpd_dset extend external links unlink big mtime fillval mount \
- flush1 flush2 enum gass_write gass_read gass_append set_extent \
- srb_write srb_append srb_read ttsafe stream_test getname file_handle \
- ntypes dangle filename reserved
+TEST_PROGS=testhdf5 lheap ohdr stab gheap cache hyperslab istore bittests \
+ dtypes dsets cmpd_dset extend external links unlink big mtime fillval \
+ mount flush1 flush2 enum gass_write gass_read gass_append set_extent \
+ srb_write srb_append srb_read ttsafe stream_test getname file_handle \
+ ntypes dangle filename reserved
TIMINGS=testmeta
@@ -70,17 +70,17 @@ CLEAN=$(TIMINGS)
## other source lists are for the individual tests, the files of which may
## overlap with other tests.
-TEST_SRC=big.c bittests.c cmpd_dset.c dsets.c dtypes.c extend.c \
- external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \
- istore.c lheap.c links.c mount.c mtime.c ohdr.c stab.c tarray.c \
- tattr.c tconfig.c testhdf5.c testmeta.c tfile.c \
- tgenprop.c th5s.c theap.c titerate.c tmeta.c trefer.c trefstr.c \
- tselect.c ttime.c ttbbt.c ttst.c tvltypes.c tvlstr.c tmisc.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 srb_read.c srb_write.c srb_append.c stream_test.c \
- set_extent.c getname.c file_handle.c ntypes.c dangle.c filename.c \
- reserved.c
+TEST_SRC=big.c bittests.c cache.c cmpd_dset.c dsets.c dtypes.c extend.c \
+ external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \
+ istore.c lheap.c links.c mount.c mtime.c ohdr.c stab.c tarray.c \
+ tattr.c tconfig.c testhdf5.c testmeta.c tfile.c \
+ tgenprop.c th5s.c theap.c titerate.c tmeta.c trefer.c trefstr.c \
+ tselect.c ttime.c ttbbt.c ttst.c tvltypes.c tvlstr.c tmisc.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 srb_read.c srb_write.c srb_append.c stream_test.c \
+ set_extent.c getname.c file_handle.c ntypes.c dangle.c filename.c \
+ reserved.c
TEST_OBJ=$(TEST_SRC:.c=.lo)
@@ -119,6 +119,9 @@ testhdf5: $(TESTHDF5_OBJ)
lheap: lheap.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ lheap.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+cache: cache.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ cache.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
ohdr: ohdr.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ ohdr.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)