Skip to content

Commit

Permalink
Only test if ADIOS2 version at least 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Feb 28, 2023
1 parent 8cc7fee commit d0d1e7a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7279,7 +7279,13 @@ void joined_dim(std::string const &ext)

TEST_CASE("joined_dim", "[serial]")
{
#if 100000000 * ADIOS2_VERSION_MAJOR + 1000000 * ADIOS2_VERSION_MINOR + \
10000 * ADIOS2_VERSION_PATCH + 100 * ADIOS2_VERSION_TWEAK >= \
209000000
constexpr char const *supportsJoinedDims[] = {"bp", "bp4", "bp5"};
#else
constexpr char const *supportsJoinedDims[] = {};
#endif
for (auto const &t : testedFileExtensions())
{
for (auto const supported : supportsJoinedDims)
Expand Down

0 comments on commit d0d1e7a

Please sign in to comment.