Skip to content

Commit 9fa1f84

Browse files
committed
Resize Test: Fix Backend Selection
Names are: - `ADIOS1` - `MPI_ADIOS1` - `ADIOS2` - `MPI_ADIOS2`
1 parent efa6990 commit 9fa1f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ParallelIOTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ extendDataset( std::string const & ext )
390390
std::iota( data2.begin(), data2.end(), 25 );
391391
{
392392
Series write( filename, Access::CREATE, MPI_COMM_WORLD );
393-
if( ext == "bp" && write.backend() != "ADIOS2" )
393+
if( ext == "bp" && write.backend() == "MPI_ADIOS1" )
394394
{
395395
// dataset resizing unsupported in ADIOS1
396396
return;

0 commit comments

Comments
 (0)