Skip to content

Commit

Permalink
CI FIXES
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Feb 29, 2024
1 parent 2084f27 commit 9e3741d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/Files_SerialIO/close_iteration_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,11 @@ auto close_and_reopen_test() -> void
run_test_filebased([](Series &s) { return s.snapshots(); }, "h5");
#endif

/*
* This test writes the same attribute with different values over steps,
* triggering a bug in ADIOS2 v2.7.
*/
#if openPMD_HAS_ADIOS_2_8
run_test_groupbased(
[](Series &s) { return s.iterations; },
"bp4",
Expand All @@ -291,12 +296,17 @@ auto close_and_reopen_test() -> void
[](Series &s) { return s.snapshots(); },
"json",
{Access::READ_RANDOM_ACCESS, Access::READ_LINEAR});
#endif
#if openPMD_HAVE_HDF5
run_test_groupbased(
[](Series &s) { return s.snapshots(); },
"h5",
{Access::READ_RANDOM_ACCESS, Access::READ_LINEAR});
#endif
run_test_groupbased(
[](Series &s) { return s.snapshots(); },
"json",
{Access::READ_RANDOM_ACCESS, Access::READ_LINEAR});
}
#else
auto close_and_reopen_test() -> void
Expand Down

0 comments on commit 9e3741d

Please sign in to comment.