Skip to content

Commit

Permalink
clarify skip message
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Feb 19, 2025
1 parent 730447e commit 0723a29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion unit_tests/mpi/test_mpi_view_access.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ void view_access_via_mpi_extension() {
#elif defined(KOKKOSCOMM_IMPL_MPI_IS_MPICH) && defined(KOKKOS_ENABLE_CUDA)
EXPECT_EQ(1, MPIX_Query_cuda_support());
#else
GTEST_SKIP() << "MPI extension not available";
GTEST_SKIP() << "Query CUDA support via MPI extension not available";
#endif
#else
GTEST_SKIP() << "mpi-ext.h not available";
#endif // KOKKOSCOMM_IMPL_MPI_EXT_H
}

Expand Down

0 comments on commit 0723a29

Please sign in to comment.