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 cfdcc28 commit 9624ac2Copy full SHA for 9624ac2
test/SerialIOTest.cpp
@@ -7245,7 +7245,14 @@ void joined_dim(std::string const &ext)
7245
7246
TEST_CASE("joined_dim", "[serial]")
7247
{
7248
+#if 100000000 * ADIOS2_VERSION_MAJOR + 1000000 * ADIOS2_VERSION_MINOR + \
7249
+ 10000 * ADIOS2_VERSION_PATCH + 100 * ADIOS2_VERSION_TWEAK >= \
7250
+ 209000000
7251
constexpr char const *supportsJoinedDims[] = {"bp", "bp4", "bp5"};
7252
+#else
7253
+ // no zero-size arrays
7254
+ std::vector<char const *> supportsJoinedDims;
7255
+#endif
7256
for (auto const &t : testedFileExtensions())
7257
7258
for (auto const supported : supportsJoinedDims)
0 commit comments