diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-01-29 16:09:50 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-01-29 16:09:50 (GMT) |
commit | c7c076e747674128f44396fb3d10565bc4218efc (patch) | |
tree | fe693983fafb3236342be174335ba6d7a42a5d3b /examples/ph5example.c | |
parent | 1eac2519bc1d91af7d5151b4cbe62dbf58b24952 (diff) | |
download | hdf5-c7c076e747674128f44396fb3d10565bc4218efc.zip hdf5-c7c076e747674128f44396fb3d10565bc4218efc.tar.gz hdf5-c7c076e747674128f44396fb3d10565bc4218efc.tar.bz2 |
[svn-r4879] Purpose:
Bug fix
Description:
$TEST_PROG_PARA was included in the serial tests.
$TEST_PROG_PARA was not dependent on $LIBHDF5 (it should.)
Solution:
Adjusted the file to fix both problems.
Platforms tested:
eirene (pp, linux 2.2.), dangermouse (pp, linux 2.4)
modi4 (pp, -64) and modi4 serial (to verify that ph5example was not
tested at all.)
Diffstat (limited to 'examples/ph5example.c')
-rw-r--r-- | examples/ph5example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ph5example.c b/examples/ph5example.c index 84f5ab7..4871ee7 100644 --- a/examples/ph5example.c +++ b/examples/ph5example.c @@ -14,7 +14,7 @@ */ #include <assert.h> -#include <hdf5.h> +#include "hdf5.h" #ifdef H5_HAVE_PARALLEL /* Temporary source code */ @@ -952,7 +952,7 @@ parse_options(int argc, char **argv){ int main(int argc, char **argv) { - char *filenames[]={ "ParaEg1.h5f", "ParaEg2.h5f" }; + char *filenames[]={ "ParaEg1.h5", "ParaEg2.h5" }; int mpi_namelen; char mpi_name[MPI_MAX_PROCESSOR_NAME]; |