We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cc7fee commit 1f299b6Copy full SHA for 1f299b6
test/SerialIOTest.cpp
@@ -7279,7 +7279,14 @@ void joined_dim(std::string const &ext)
7279
7280
TEST_CASE("joined_dim", "[serial]")
7281
{
7282
+#if 100000000 * ADIOS2_VERSION_MAJOR + 1000000 * ADIOS2_VERSION_MINOR + \
7283
+ 10000 * ADIOS2_VERSION_PATCH + 100 * ADIOS2_VERSION_TWEAK >= \
7284
+ 209000000
7285
constexpr char const *supportsJoinedDims[] = {"bp", "bp4", "bp5"};
7286
+#else
7287
+ // no zero-size arrays
7288
+ std::vector<char const *> supportsJoinedDims;
7289
+#endif
7290
for (auto const &t : testedFileExtensions())
7291
7292
for (auto const supported : supportsJoinedDims)
0 commit comments