File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -3142,6 +3142,7 @@ TEST_CASE( "serial_iterator", "[serial][adios2]" )
31423142 }
31433143}
31443144
3145+ #if openPMD_HAVE_ADIOS2
31453146void
31463147stepBasedSeries ( std::string const & file )
31473148{
@@ -3159,6 +3160,10 @@ stepBasedSeries( std::string const & file )
31593160 constexpr Extent::value_type extent = 1000 ;
31603161 {
31613162 Series writeSeries ( file, Access::CREATE, config );
3163+ if ( writeSeries.backend () == " ADIOS1" )
3164+ {
3165+ return ;
3166+ }
31623167 writeSeries.setIterationEncoding ( IterationEncoding::stepBased );
31633168 auto iterations = writeSeries.writeIterations ();
31643169 for ( size_t i = 0 ; i < 10 ; ++i )
@@ -3196,6 +3201,7 @@ TEST_CASE( "stepBasedSeries", "[serial][adios2]" )
31963201{
31973202 stepBasedSeries ( " ../samples/stepBasedSeries.bp" );
31983203}
3204+ #endif
31993205
32003206void
32013207iterate_nonstreaming_series ( std::string const & file )
You can’t perform that action at this time.
0 commit comments