Skip to content

Commit

Permalink
Update nvhpc gtest skip message
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed Aug 25, 2023
1 parent 8886eb6 commit 85f66eb
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions core/unit_test/TestLocalDeepCopy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,8 @@ TEST(TEST_CATEGORY, local_deepcopy_teampolicy_layoutleft) {
#if defined(KOKKOS_ENABLE_CUDA) && \
defined(KOKKOS_COMPILER_NVHPC) // FIXME_NVHPC 23.7
if (std::is_same_v<ExecSpace, Kokkos::Cuda>)
GTEST_SKIP() << "FIXME_NVHPC (?)";
GTEST_SKIP()
<< "FIXME_NVHPC : Compiler bug affecting subviews of high rank Views";
#endif
using ViewType = Kokkos::View<double********, Kokkos::LayoutLeft, ExecSpace>;

Expand Down Expand Up @@ -942,7 +943,8 @@ TEST(TEST_CATEGORY, local_deepcopy_rangepolicy_layoutleft) {
#if defined(KOKKOS_ENABLE_CUDA) && \
defined(KOKKOS_COMPILER_NVHPC) // FIXME_NVHPC 23.7
if (std::is_same_v<ExecSpace, Kokkos::Cuda>)
GTEST_SKIP() << "FIXME_NVHPC (?)";
GTEST_SKIP()
<< "FIXME_NVHPC : Compiler bug affecting subviews of high rank Views";
#endif
using ViewType = Kokkos::View<double********, Kokkos::LayoutLeft, ExecSpace>;

Expand Down Expand Up @@ -974,7 +976,8 @@ TEST(TEST_CATEGORY, local_deepcopy_teampolicy_layoutright) {
#if defined(KOKKOS_ENABLE_CUDA) && \
defined(KOKKOS_COMPILER_NVHPC) // FIXME_NVHPC 23.7
if (std::is_same_v<ExecSpace, Kokkos::Cuda>)
GTEST_SKIP() << "FIXME_NVHPC (?)";
GTEST_SKIP()
<< "FIXME_NVHPC : Compiler bug affecting subviews of high rank Views";
#endif
using ViewType = Kokkos::View<double********, Kokkos::LayoutRight, ExecSpace>;

Expand Down Expand Up @@ -1006,7 +1009,8 @@ TEST(TEST_CATEGORY, local_deepcopy_rangepolicy_layoutright) {
#if defined(KOKKOS_ENABLE_CUDA) && \
defined(KOKKOS_COMPILER_NVHPC) // FIXME_NVHPC 23.7
if (std::is_same_v<ExecSpace, Kokkos::Cuda>)
GTEST_SKIP() << "FIXME_NVHPC (?)";
GTEST_SKIP()
<< "FIXME_NVHPC : Compiler bug affecting subviews of high rank Views";
#endif

using ViewType = Kokkos::View<double********, Kokkos::LayoutRight, ExecSpace>;
Expand Down

0 comments on commit 85f66eb

Please sign in to comment.