diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-04-02 18:44:12 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-04-02 18:44:12 (GMT) |
commit | febe7d0bd9c74b3e238870e6ce50b1b1a8258221 (patch) | |
tree | a14aaeea6f7a356f018f3d2978de0f7f696f7c8e /tools/h5diff/Makefile.in | |
parent | 18b98b4298afd4beacf3ddca70f87c104d2002b3 (diff) | |
download | hdf5-febe7d0bd9c74b3e238870e6ce50b1b1a8258221.zip hdf5-febe7d0bd9c74b3e238870e6ce50b1b1a8258221.tar.gz hdf5-febe7d0bd9c74b3e238870e6ce50b1b1a8258221.tar.bz2 |
[svn-r6563] Purpose:
added test script for h5diff
code cleaning for alpha release
makefile now generates the h5difftst.c program that generates 2 .h5 files for testing
Description:
the .sh script runs several runs of h5diff and compares the output
with a predifined output located in /tools/testfiles (.txt files)
righ now it has only one test
Solution:
Platforms tested:
linux (other platforms later , ok !? )
Misc. update:
Diffstat (limited to 'tools/h5diff/Makefile.in')
-rw-r--r-- | tools/h5diff/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in index a48f41d..4a56caa 100644 --- a/tools/h5diff/Makefile.in +++ b/tools/h5diff/Makefile.in @@ -26,8 +26,8 @@ CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src \ ## Test programs and scripts. ## -TEST_PROGS= -TEST_SCRIPTS= +TEST_PROGS=h5difftst +TEST_SCRIPTS=$(srcdir)/testh5diff.sh ## These are our main targets: library and tools. ## @@ -44,10 +44,10 @@ PUB_LIB= ## Source and object files for programs... ## -PROG_SRC=h5diff.c h5trav.c +PROG_SRC=h5diff.c h5trav.c h5difftst.c PROG_OBJ=$(PROG_SRC:.c=.lo) -PRIVATE_HDR= +PRIVATE_HDR=h5trav.h ## Source and object files for the tests ## @@ -66,4 +66,8 @@ $(PROGS): $(LIBTOOLS) $(LIBHDF5) h5diff: h5diff.lo h5trav.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo h5trav.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) +h5difftst: h5difftst.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5difftst.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) + + @CONCLUDE@ |