diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-11-09 19:06:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 19:06:26 (GMT) |
commit | d93c6fae4313c497ca1383d1aef24203a29b5087 (patch) | |
tree | 3c91e02d3d64182a726eaf68fe8ce28e63ecf5d0 /testpar | |
parent | 18c438bdf0be8ad98f968bb77b327d7a3f17a3f5 (diff) | |
download | hdf5-d93c6fae4313c497ca1383d1aef24203a29b5087.zip hdf5-d93c6fae4313c497ca1383d1aef24203a29b5087.tar.gz hdf5-d93c6fae4313c497ca1383d1aef24203a29b5087.tar.bz2 |
Removes MPE instrumentation support. (#2245)
* Removes MPE instrumentation support.
The Autotools will no longer accept --with-mpe= and the logging commands
have been removed from the FUNC_ENTER macros. CMake has never supported
instrumenting for MPE.
* Committing clang-format changes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_cache.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/testpar/t_cache.c b/testpar/t_cache.c index 9b3e40d..ae47a6f 100644 --- a/testpar/t_cache.c +++ b/testpar/t_cache.c @@ -209,10 +209,6 @@ struct datum *data = NULL; #define STD_VIRT_NUM_DATA_ENTRIES NUM_DATA_ENTRIES #define EXPRESS_VIRT_NUM_DATA_ENTRIES (NUM_DATA_ENTRIES / 10) -/* Use a smaller test size to avoid creating huge MPE logfiles. */ -#ifdef H5_HAVE_MPE -#define MPE_VIRT_NUM_DATA_ENTIES (NUM_DATA_ENTRIES / 100) -#endif int virt_num_data_entries = NUM_DATA_ENTRIES; @@ -6919,12 +6915,6 @@ main(int argc, char **argv) else virt_num_data_entries = STD_VIRT_NUM_DATA_ENTRIES; -#ifdef H5_HAVE_MPE - if (MAINPROCESS) - HDprintf(" Tests compiled for MPE.\n"); - virt_num_data_entries = MPE_VIRT_NUM_DATA_ENTIES; -#endif /* H5_HAVE_MPE */ - if (MAINPROCESS) { HDprintf("===================================\n"); HDprintf("Parallel metadata cache tests\n"); |