summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-12-10 22:41:56 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-12-10 22:41:56 (GMT)
commitd49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf (patch)
treeee8d51ce5060470863fcb74e92f262271ba5cd77 /test/Makefile.in
parent082dd8cda9ef3d49be23dfce49e10dd30d0758bc (diff)
downloadhdf5-d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf.zip
hdf5-d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf.tar.gz
hdf5-d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf.tar.bz2
[svn-r140] ./test/Makefile.in
Added new tests. ./test/dsets.c NEW Tests datasets. ./test/dspace.c NEW Tests data spaces. ./test/dtypes.c NEW Tests data types. ./test/istore.c ./test/tfile.c ./test/th5p.c ./test/theap.c ./test/tohdr.c Changed to work with new function names. ./test/testhdf5.c Removed the data type and dataset tests since they're now in their own files. They had to be rewritten because of extensive changes to those interfaces.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in24
1 files changed, 18 insertions, 6 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index d2cbe3a..66bd646 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -9,22 +9,28 @@
# Add include directory to the C preprocessor flags.
CPPFLAGS=-I. -I../src @CPPFLAGS@
-# These are our main targets:
-PROGS=testhdf5 hyperslab istore
+# These are our main targets. They should be listed in the order to be
+# executed, generally most specific tests to least specific tests.
+PROGS=testhdf5 hyperslab istore dtypes dsets
TESTS=$(PROGS)
# Source and object files for programs... The PROG_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.
-PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5t.c th5p.c \
- th5d.c hyperslab.c istore.c
+PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5p.c dtypes.c \
+ hyperslab.c istore.c dsets.c
PROG_OBJ=$(PROG_SRC:.c=.o)
-TESTHDF5_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5t.c \
- th5p.c th5d.c
+TESTHDF5_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5p.c
TESTHDF5_OBJ=$(TESTHDF5_SRC:.c=.o)
+DSETS_SRC=dsets.c
+DSETS_OBJ=$(DSETS_SRC:.c=.o)
+
+DTYPES_SRC=dtypes.c
+DTYPES_OBJ=$(DTYPES_SRC:.c=.o)
+
HYPERSLAB_SRC=hyperslab.c
HYPERSLAB_OBJ=$(HYPERSLAB_SRC:.c=.o)
@@ -38,6 +44,12 @@ PRIVATE_HDR=testhdf5.h
testhdf5: $(TESTHDF5_OBJ) ../src/libhdf5.a
$(CC) $(CFLAGS) -o $@ $(TESTHDF5_OBJ) ../src/libhdf5.a $(LIBS)
+dsets: $(DSETS_OBJ) ../src/libhdf5.a
+ $(CC) $(CFLAGS) -o $@ $(DSETS_OBJ) ../src/libhdf5.a $(LIBS)
+
+dtypes: $(DTYPES_OBJ) ../src/libhdf5.a
+ $(CC) $(CFLAGS) -o $@ $(DTYPES_OBJ) ../src/libhdf5.a $(LIBS)
+
hyperslab: $(HYPERSLAB_OBJ) ../src/libhdf5.a
$(CC) $(CFLAGS) -o $@ $(HYPERSLAB_OBJ) ../src/libhdf5.a $(LIBS)