diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-12-20 15:48:09 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:21 (GMT) |
commit | 68373c2d788d06bd140dd2ef546db71b54b4ff50 (patch) | |
tree | 57255eba14f682d31396faab580817265e627bc4 /tools | |
parent | 2914c7baf8619cdaa58a3d1234b9b209a47bfe81 (diff) | |
download | hdf5-68373c2d788d06bd140dd2ef546db71b54b4ff50.zip hdf5-68373c2d788d06bd140dd2ef546db71b54b4ff50.tar.gz hdf5-68373c2d788d06bd140dd2ef546db71b54b4ff50.tar.bz2 |
Standalone doesn't use h5test lib implementation.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/perform/pio_standalone.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/test/perform/pio_standalone.c b/tools/test/perform/pio_standalone.c index dd6a61a..0fba904 100644 --- a/tools/test/perform/pio_standalone.c +++ b/tools/test/perform/pio_standalone.c @@ -18,6 +18,9 @@ #include "pio_perf.h" +#ifdef STANDALONE +MPI_Info h5_io_info_g=MPI_INFO_NULL;/* MPI INFO object for IO */ +#endif /** From h5tools_utils.c **/ @@ -161,5 +164,3 @@ print_version(const char *progname) progname, H5_VERS_MAJOR, H5_VERS_MINOR, H5_VERS_RELEASE, H5_VERS_SUBRELEASE[0] ? "-" : "", H5_VERS_SUBRELEASE); } - - |