Skip to content

Commit

Permalink
#955: Fixing indentation and runScheduler function removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Braden Mailloux authored and lifflander committed Sep 14, 2020
1 parent 650b92a commit af5f6f8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/unit/collectives/test_mpi_collective.cc
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@ TEST_F(TestMPICollective, test_mpi_collective_4) {

auto op3 = [&]{
scope3.mpiCollectiveAsync([&done]{
auto comm = theContext()->getComm();
vt_print(barrier, "run MPI_barrier\n");
MPI_Barrier(comm);
run_order[done++] = 3;
auto comm = theContext()->getComm();
vt_print(barrier, "run MPI_barrier\n");
MPI_Barrier(comm);
run_order[done++] = 3;
});
};

Expand All @@ -218,7 +218,6 @@ TEST_F(TestMPICollective, test_mpi_collective_4) {
} else {
op2(); op3(); op1();
}
runScheduler();
});

auto num_nodes = theContext()->getNumNodes();
Expand Down

0 comments on commit af5f6f8

Please sign in to comment.