diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-03-27 20:32:45 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-03-27 20:32:45 (GMT) |
commit | 580ba61650d57dce375b0c649d5ee7bd88580965 (patch) | |
tree | 49ca4d4903012aa3d8a0a9b0b56063362479236a /fortran/examples | |
parent | 84f1218f6b1426f73b20e641288c6ba015580d6a (diff) | |
download | hdf5-580ba61650d57dce375b0c649d5ee7bd88580965.zip hdf5-580ba61650d57dce375b0c649d5ee7bd88580965.tar.gz hdf5-580ba61650d57dce375b0c649d5ee7bd88580965.tar.bz2 |
[svn-r12160] Purpose:
Added test
Description:
The deploy Daily Test is now more robust
Solution:
Previously, the Daily Tests (using the bin/snapshot script) would run
bin/deploy to install HDF5 into a directory other than the --prefix
specified at configure-time. However, this new installation was never
tested using make check-install.
Modified bin/snapshot to clean the test directory and run make check-install
for the newly-deployed library.
Platforms tested:
tested snapshot script on mir. No changes to code.
Trial by fire in Daily Tests tonight!
Diffstat (limited to 'fortran/examples')
-rw-r--r-- | fortran/examples/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index 5d481fb..9249fa3 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -44,8 +44,8 @@ TEST_OBJ=$(TEST_SRC:.f90=.lo) EXAMPLE_PROGS=$(TEST_SRC) -## How to build the programs... they all depend on the Fortran & C hdf5 libraries -$(TEST_PROGS): $(LIBHDF5) +## How to build the programs... they all depend on the installed h5fc. +$(TEST_PROGS): dsetexample: $(srcdir)/dsetexample.f90 @if test "X$(PARALLEL)" = "Xno"; then \ echo $(FC) -o $@ $(srcdir)/$@.f90; \ |