Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adios2 warn groupbased encoding #1498

Merged
merged 15 commits into from
Dec 22, 2023
Prev Previous commit
Next Next commit
Fix tests
  • Loading branch information
franzpoeschel committed Dec 22, 2023
commit 70df57aa653d604a4d7596918dd082b65fa2dfcf
11 changes: 9 additions & 2 deletions test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4880,15 +4880,22 @@ void bp4_steps(

TEST_CASE("bp4_steps", "[serial][adios2]")
{
std::string bp4 = R"(
std::string bp4 = json::merge(
R"(
{
"ADIOS2": {
"engine": {
"type": "bp4"
}
}
}
)";
)",
#if openPMD_HAS_ADIOS_2_9
R"({"ADIOS2":{"use_group_table": true}})"
#else
R"({"ADIOS2":{"use_group_table": false}})"
#endif
);
std::string nullcore = R"(
{
"adios2": {
Expand Down