summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-01-07 11:42:04 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-01-07 11:42:04 (GMT)
commit4f7e218959be3076c079a9cabede8c167bb35689 (patch)
tree33b8c8d59034a132b79abe1d9b28382e812c5f91 /test/Makefile.in
parent504aa95bd92511ccb80e6321dd79f7dc525310d5 (diff)
downloadhdf5-4f7e218959be3076c079a9cabede8c167bb35689.zip
hdf5-4f7e218959be3076c079a9cabede8c167bb35689.tar.gz
hdf5-4f7e218959be3076c079a9cabede8c167bb35689.tar.bz2
[svn-r1011] Changes since 19981217
---------------------- ./test/dtypes.c ./test/enum.c [NEW] Added support for enumeration data types. ./test/fillval.c ./test/istore.c Fixed memory leaks during error handling.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 8881e0e..a7c66a4 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -15,7 +15,7 @@ LIBS=libh5test.a ../src/libhdf5.a @LIBS@
# 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
+ flush1 flush2 enum
TIMINGS=iopipe chunk ragged overhead
# The libh5test.a library provides common support code for the tests.
@@ -36,7 +36,8 @@ 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 ragged.h5 unlink.h5 overhead.h5 \
- fillval_[0-9].h5 fillval.raw mount_[0-9].h5 trefer.h5 flush.h5
+ fillval_[0-9].h5 fillval.raw mount_[0-9].h5 trefer.h5 flush.h5 \
+ enum1.h5
CLEAN=$(TIMINGS)
# Source and object files for programs... The TEST_SRC list contains all the
@@ -46,8 +47,8 @@ CLEAN=$(TIMINGS)
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 \
- ragged.c space_overflow.c stab.c tattr.c testhdf5.c tfile.c th5s.c \
- tmeta.c trefer.c tselect.c unlink.c
+ ragged.c stab.c tattr.c testhdf5.c tfile.c th5s.c tmeta.c trefer.c \
+ tselect.c unlink.c enum.c
TEST_OBJ=$(TEST_SRC:.c=.o)
# Private header files (not to be installed)...
@@ -141,4 +142,7 @@ flush1: flush1.o
flush2: flush2.o
$(CC) $(CFLAGS) -o $@ flush2.o $(LDFLAGS) $(LIBS)
+enum: enum.o
+ $(CC) $(CFLAGS) -o $@ enum.o $(LDFLAGS) $(LIBS)
+
@CONCLUDE@