summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-03-02 18:16:29 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-03-02 18:16:29 (GMT)
commit5246af2c9d1714f21e9459274acd79b78ee23202 (patch)
tree289c3565bdffc0f99af310573c8e781d9c6df979
parenta2496b4a6ffe1c58ff01e508cb92a24f0f5ef2f3 (diff)
downloadhdf5-5246af2c9d1714f21e9459274acd79b78ee23202.zip
hdf5-5246af2c9d1714f21e9459274acd79b78ee23202.tar.gz
hdf5-5246af2c9d1714f21e9459274acd79b78ee23202.tar.bz2
[svn-r3538] Purpose:
Bug Fix. Description: When the user would do a ``make check'' without doing a ``make all'' first, the tests in the examples directory wouldn't build correctly. Solution: Added the tests to the TEST_PROGS macro instead of the PROGS macro. Platforms tested: Linux
-rw-r--r--c++/examples/Group.h5bin6712 -> 6712 bytes
-rw-r--r--c++/examples/Makefile.in4
-rw-r--r--c++/examples/SDS.h5bin2168 -> 2168 bytes
-rw-r--r--c++/examples/SDScompound.h5bin2208 -> 2208 bytes
-rw-r--r--c++/examples/SDSextendible.h5bin4864 -> 4864 bytes
-rw-r--r--c++/examples/Select.h5bin2432 -> 2432 bytes
6 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/Group.h5 b/c++/examples/Group.h5
index d8f7e89..ef35e1c 100644
--- a/c++/examples/Group.h5
+++ b/c++/examples/Group.h5
Binary files differ
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index 2ba0672..67c448a 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -27,7 +27,7 @@ TEST_OBJ=$(TEST_SRC:.cpp=.lo)
## These are the programs that `make all' or `make tests' will build and which
## `make check' will run. List them in the order they should be run.
-PROGS=$(TEST_SRC:.cpp=)
+TEST_PROGS=$(TEST_SRC:.cpp=)
TEST_SCRIPTS=$(srcdir)/testexamples.sh
@@ -36,7 +36,7 @@ TEST_SCRIPTS=$(srcdir)/testexamples.sh
CLEAN=
## How to build the programs... they all depend on the Fortran & C hdf5 libraries
-$(PROGS): $(LIB) $(LIBHDF5)
+$(TEST_PROGS): $(LIB) $(LIBHDF5)
compound: compound.lo
@$(LT_LINK_EXE) $(CXXFLAGS) -o $@ compound.lo $(LDFLAGS) $(LIB) $(LIBS) $(LIBHDF5)
diff --git a/c++/examples/SDS.h5 b/c++/examples/SDS.h5
index 483dc89..87237cd 100644
--- a/c++/examples/SDS.h5
+++ b/c++/examples/SDS.h5
Binary files differ
diff --git a/c++/examples/SDScompound.h5 b/c++/examples/SDScompound.h5
index c72307f..644fb76 100644
--- a/c++/examples/SDScompound.h5
+++ b/c++/examples/SDScompound.h5
Binary files differ
diff --git a/c++/examples/SDSextendible.h5 b/c++/examples/SDSextendible.h5
index b0f178a..9f040a4 100644
--- a/c++/examples/SDSextendible.h5
+++ b/c++/examples/SDSextendible.h5
Binary files differ
diff --git a/c++/examples/Select.h5 b/c++/examples/Select.h5
index 93ba46b..bdd6947 100644
--- a/c++/examples/Select.h5
+++ b/c++/examples/Select.h5
Binary files differ