Commit b47559a5 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed comparison of signed and unsigned integers in DistribtuedGrid tests

parent 805f5a16
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -499,7 +499,7 @@ TEST_F(DistributedGridTest_1D, readDistributedMeshFunction)
   TNL::MPI::Barrier();
   TNL::MPI::Barrier();
   if( TNL::MPI::GetRank() == 0 ) {
   if( TNL::MPI::GetRank() == 0 ) {
      EXPECT_TRUE( fs::remove( mainFilePath ) );
      EXPECT_TRUE( fs::remove( mainFilePath ) );
      EXPECT_GT( fs::remove_all( baseName ), 1 );
      EXPECT_GT( fs::remove_all( baseName ), 1u );
   }
   }
}
}
#endif
#endif
+1 −1
Original line number Original line Diff line number Diff line
@@ -1129,7 +1129,7 @@ TEST_F(DistributedGridTest_2D, readDistributedMeshFunction)
   TNL::MPI::Barrier();
   TNL::MPI::Barrier();
   if( TNL::MPI::GetRank() == 0 ) {
   if( TNL::MPI::GetRank() == 0 ) {
      EXPECT_TRUE( fs::remove( mainFilePath ) );
      EXPECT_TRUE( fs::remove( mainFilePath ) );
      EXPECT_GT( fs::remove_all( baseName ), 1 );
      EXPECT_GT( fs::remove_all( baseName ), 1u );
   }
   }
}
}
#endif
#endif
+1 −1
Original line number Original line Diff line number Diff line
@@ -810,7 +810,7 @@ TEST_F(DistributedGridTest_3D, readDistributedMeshFunction)
   TNL::MPI::Barrier();
   TNL::MPI::Barrier();
   if( TNL::MPI::GetRank() == 0 ) {
   if( TNL::MPI::GetRank() == 0 ) {
      EXPECT_TRUE( fs::remove( mainFilePath ) );
      EXPECT_TRUE( fs::remove( mainFilePath ) );
      EXPECT_GT( fs::remove_all( baseName ), 1 );
      EXPECT_GT( fs::remove_all( baseName ), 1u );
   }
   }
}
}
#endif
#endif