From 6f6d45e894cfe9f184019fc8a91467f3a9dcabf7 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 12 Sep 1997 10:33:07 -0500 Subject: [svn-r74] Added rudimentary dataset testing code. More coming later today... --- test/Makefile.in | 2 +- test/testhdf5.c | 1 + test/testhdf5.h | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Makefile.in b/test/Makefile.in index 7b47bb7..339ebc3 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -14,7 +14,7 @@ PROGS=testhdf5 TESTS=$(PROGS) # Source and object files for programs... -PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5t.c th5p.c +PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5t.c th5p.c th5d.c PROG_OBJ=$(PROG_SRC:.c=.o) # Private header files (not to be installed)... diff --git a/test/testhdf5.c b/test/testhdf5.c index 3af58e1..98ac03c 100644 --- a/test/testhdf5.c +++ b/test/testhdf5.c @@ -159,6 +159,7 @@ int main(int argc, char *argv[]) InitTest("stab", test_stab, "Symbol Tables"); InitTest("h5t", test_h5t, "Datatypes"); InitTest("h5p", test_h5p, "Dataspaces"); + InitTest("h5d", test_h5d, "Datasets"); Verbosity = 4; /* Default Verbosity is Low */ H5version(&major, &minor, &release, &patch); diff --git a/test/testhdf5.h b/test/testhdf5.h index 406491e..50ceb33 100644 --- a/test/testhdf5.h +++ b/test/testhdf5.h @@ -105,6 +105,7 @@ void test_ohdr (void); void test_stab (void); void test_h5t (void); void test_h5p (void); +void test_h5d (void); #endif /* HDF5TEST_H */ -- cgit v0.12