Skip to content

Commit

Permalink
review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Oct 25, 2023
1 parent 92ef8be commit 4f3f970
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 4 additions & 7 deletions testpar/t_subfiling_vfd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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])();
}
Expand All @@ -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
Expand All @@ -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])();
}
Expand All @@ -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
Expand Down

0 comments on commit 4f3f970

Please sign in to comment.