From 9e3741db668068b405dfec828a667715932a3fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20P=C3=B6schel?= Date: Tue, 27 Feb 2024 17:46:18 +0100 Subject: [PATCH] CI FIXES --- test/Files_SerialIO/close_iteration_test.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/Files_SerialIO/close_iteration_test.cpp b/test/Files_SerialIO/close_iteration_test.cpp index 2863c75247..efaeaf712b 100644 --- a/test/Files_SerialIO/close_iteration_test.cpp +++ b/test/Files_SerialIO/close_iteration_test.cpp @@ -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", @@ -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