diff options
author | Quincey Koziol <koziol@lbl.gov> | 2021-03-26 20:14:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 20:14:09 (GMT) |
commit | cb0a883f6d3ce976f8d485c8e44996d7264fce54 (patch) | |
tree | cd892be63e9adf7ca572aaa74d104ed5663748b8 /testpar/testphdf5.h | |
parent | da5aca29ff8e8e858eda0c030bf48cf64ac95519 (diff) | |
download | hdf5-cb0a883f6d3ce976f8d485c8e44996d7264fce54.zip hdf5-cb0a883f6d3ce976f8d485c8e44996d7264fce54.tar.gz hdf5-cb0a883f6d3ce976f8d485c8e44996d7264fce54.tar.bz2 |
Minor parallel improvements (#519)
* Improve MPI error reporting, handled failed operations in parallel tests more nicely, and clean up MPI_Allreduce for determining whether to break collective I/O
* Committing clang-format changes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'testpar/testphdf5.h')
-rw-r--r-- | testpar/testphdf5.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/testpar/testphdf5.h b/testpar/testphdf5.h index bd8de08..007fac0 100644 --- a/testpar/testphdf5.h +++ b/testpar/testphdf5.h @@ -225,13 +225,11 @@ typedef enum { } ShapeSameTestMethods; /* Shared global variables */ -extern int dim0, dim1; /*Dataset dimensions */ -extern int chunkdim0, chunkdim1; /*Chunk dimensions */ -extern int nerrors; /*errors count */ -extern H5E_auto2_t old_func; /* previous error handler */ -extern void * old_client_data; /*previous error handler arg.*/ -extern int facc_type; /*Test file access type */ -extern int dxfer_coll_type; +extern int dim0, dim1; /*Dataset dimensions */ +extern int chunkdim0, chunkdim1; /*Chunk dimensions */ +extern int nerrors; /*errors count */ +extern int facc_type; /*Test file access type */ +extern int dxfer_coll_type; /* Test program prototypes */ void test_plist_ed(void); |