From 4f3f970cd862250d4725e3a527f80c3ba1f3c3c4 Mon Sep 17 00:00:00 2001 From: Scot Breitenfeld Date: Wed, 25 Oct 2023 11:52:08 -0500 Subject: [PATCH] review updates --- configure.ac | 2 +- testpar/t_subfiling_vfd.c | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac index 44ab43a4664..b8ff31457c3 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ ## ---------------------------------------------------------------------- ## Initialize configure. ## -AC_PREREQ([2.71]) +AC_PREREQ([2.69]) ## AC_INIT takes the name of the package, the version number, and an ## email address to report bugs. AC_CONFIG_SRCDIR takes a unique file diff --git a/testpar/t_subfiling_vfd.c b/testpar/t_subfiling_vfd.c index 60521b3792f..a5ac5c948d9 100644 --- a/testpar/t_subfiling_vfd.c +++ b/testpar/t_subfiling_vfd.c @@ -2487,12 +2487,12 @@ main(int argc, char **argv) if (num_iocs_g > mpi_size) num_iocs_g = mpi_size; -#ifdef H5_HAVE_FILTER_DEFLATE if (MAINPROCESS) { printf(" Re-running tests with compression enabled\n"); } +#ifdef H5_HAVE_FILTER_DEFLATE enable_compression = true; - for (size_t i = 5; i < ARRAY_SIZE(tests); i++) { + for (size_t i = 0; i < ARRAY_SIZE(tests); i++) { if (MPI_SUCCESS == (mpi_code_g = MPI_Barrier(comm_g))) { (*tests[i])(); } @@ -2505,7 +2505,6 @@ main(int argc, char **argv) enable_compression = false; #else if (MAINPROCESS) { - TESTING_2("re-running tests with compression enabled"); SKIPPED(); } #endif @@ -2525,13 +2524,13 @@ main(int argc, char **argv) } } -#ifdef H5_HAVE_FILTER_DEFLATE if (MAINPROCESS) { puts(""); printf(" Re-running tests with compression enabled\n"); } +#ifdef H5_HAVE_FILTER_DEFLATE enable_compression = true; - for (size_t i = 5; i < ARRAY_SIZE(tests); i++) { + for (size_t i = 0; i < ARRAY_SIZE(tests); i++) { if (MPI_SUCCESS == (mpi_code_g = MPI_Barrier(comm_g))) { (*tests[i])(); } @@ -2544,8 +2543,6 @@ main(int argc, char **argv) enable_compression = false; #else if (MAINPROCESS) { - puts(""); - TESTING_2("re-running tests with compression enabled"); SKIPPED(); } #endif